-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.01 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
{
"name": "atomic-scripts",
"version": "2.1.2",
"license": "MIT",
"repository": "https://github.com/michaseel/atomic-scripts",
"engines": {
"node": ">=6"
},
"bugs": {
"url": "https://github.com/michaseel/atomic-scripts/issues"
},
"bin": {
"atomic-scripts": "./bin/index.js"
},
"description": "React Component Generator in Atomic-Design Manner",
"keywords": [
"react",
"generator",
"cli",
"atomic",
"styleguidist",
"snapshot-tests",
"styled-components"
],
"files": [
"bin",
"templates"
],
"dependencies": {
"app-root-path": "^2.0.1",
"chalk": "^2.3.0",
"coveralls": "^3.0.0",
"inquirer": "^4.0.1",
"lodash": "^4.17.4",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"jest": "^21.2.1"
},
"scripts": {
"test": "jest",
"test:ci": "node node_modules/.bin/jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test:watch": "jest --watch",
"coverage": "jest --coverage"
}
}