-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.22 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "react-plopjs",
"version": "2.1.1",
"description": "Generate boilerplate react components",
"main": "lib/index.js",
"bin": {
"plopjs": "bin/index.js"
},
"scripts": {
"watch": "babel src/ --out-dir lib --extensions .ts --watch",
"build": "babel src/ --out-dir lib --extensions .ts",
"prepublish": "tsc && yarn run build",
"test:w": "jest --coverage --watch",
"test": "jest",
"tsc": "tsc"
},
"repository": {
"url": "https://github.com/musti-91/react-plopjs"
},
"preferGlobal": true,
"keywords": [
"react",
"plopjs",
"dynamic react components"
],
"author": "Mustafa Alroomi<[email protected]>",
"license": "ISC",
"dependencies": {
"@babel/polyfill": "^7.12.1",
"camelcase": "^6.2.0",
"chalk": "^4.1.0",
"glob": "^7.1.6",
"minimist": "^1.2.5",
"path": "^0.12.7",
"plop": "^2.7.4",
"prettier": "^2.2.1"
},
"devDependencies": {
"@types/camelcase": "^5.2.0",
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.20",
"jest": "^26.6.3",
"typescript": "^4.1.3"
}
}