-
Notifications
You must be signed in to change notification settings - Fork 58
/
package.json
51 lines (51 loc) · 1.24 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
{
"name": "create-component-app",
"version": "1.7.0",
"description": "Tool to generate different types of React components from the terminal.",
"bin": {
"create-component-app": "./dist/index.js"
},
"repository": "https://github.com/CVarisco/create-component-app.git",
"author": "Christian Varisco <vari.chri1993@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=6"
},
"main": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"lint": "eslint src test",
"build": "./scripts/build.sh",
"watch": "npm-watch",
"try": "node ./dist/index.js",
"test": "jest",
"test:watch": "jest --watch"
},
"watch": {
"lint": "src/**/*.js",
"build": "src/**/*.js"
},
"dependencies": {
"babel-polyfill": "6.26.0",
"chalk": "2.1.0",
"cosmiconfig": "3.1.0",
"fs-extra": "3.0.1",
"glob": "7.1.2",
"inquirer": "3.0.6",
"yargs": "8.0.2"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-preset-env": "^1.1.8",
"babel-preset-stage-2": "^6.18.0",
"eslint": "^3.14.0",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"jest": "^20.0.4",
"mock-fs": "^3.12.1",
"npm-watch": "^0.1.7"
}
}