-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
54 lines (54 loc) · 1.06 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
50
51
52
53
54
{
"name": "react-scaffolding",
"version": "1.1.0",
"description": "start scaffolding your react components",
"main": "index.js",
"scripts": {
"test": "jest test --coverage",
"prepublishOnly": "npm test"
},
"author": "Gabriel Ferreira",
"contributors": [
{
"name": "Ivan Andrade",
"url": "https://github.com/ivandosreisandrade"
}
],
"license": "ISC",
"bin": {
"react-scaffolding": "./index.js",
"rf": "./index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/gabrielbs/react-scaffolding.git"
},
"keywords": [
"scaffold",
"scaffolding",
"react"
],
"dependencies": {
"chalk": "^2.4.1",
"minimist": "^1.2.0"
},
"devDependencies": {
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"jest": "^25.1.0",
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"jest": {
"verbose": true,
"testMatch": [
"**/tests/**/*.js?(x)"
],
"moduleFileExtensions": [
"js"
],
"moduleDirectories": [
"node_modules"
]
}
}