-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.67 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
55
56
57
58
{
"name": "reacli",
"version": "1.6.7",
"description": "A simple and straightforward React boilerplate CLI",
"main": "./dist/bin/reacli.js",
"scripts": {
"precommit": "npm run lint && npm run build && npm run test",
"test": "jest --config ./config/jest.config.js",
"build": "rimraf dist/ && babel ./ --out-dir dist/ --ignore ./node_modules,./test,./config,./commitlint.config.js && cp -r patterns dist/",
"prepublishOnly": "npm run build",
"commitmsg": "commitlint -e $GIT_PARAMS",
"lint": "eslint ./bin/*.js"
},
"bin": {
"reacli": "./dist/bin/reacli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reacli/cli.git"
},
"author": "Florian Adonis <tanohzana@gmail.com>",
"contributors": [
"Alexandre Le Lain <lelain.alexandre@gmail.com>",
"Gautier Darchen <darchen.gautier@gmail.com>",
"Léo Cornillon <leo@cornillon.org>"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/reacli/cli/issues"
},
"homepage": "https://reacli.github.io/",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.1",
"babel-jest": "^24.1.0",
"dir-compare": "^1.7.2",
"eslint": "^5.9.0",
"husky": "^0.14.3",
"jest": "^24.1.0",
"once": "^1.4.0",
"rimraf": "^2.6.3",
"tacks": "^1.3.0"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"chalk": "^2.4.2",
"commander": "^2.19.0",
"figlet": "^1.2.1",
"inquirer": "^6.2.2",
"is-windows": "^1.0.2",
"mustache": "^3.0.1",
"pkg-dir": "^3.0.0",
"pkginfo": "^0.4.1"
}
}