-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.71 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@nogsantos/fn-cli",
"version": "0.0.0-development",
"description": "CLI generators",
"scripts": {
"commit": "git-cz",
"check-coverage": "nyc check-coverage --statements 30 --branches 0 --functions 0 --lines 30",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"test": "mocha tests/*.test.js --require babel-core/register",
"watch:test": "npm t -- -w",
"cover": "nyc npm t",
"semantic-release": "semantic-release",
"prebuild": "rimraf dist",
"build": "npm-run-all --parallel build:*",
"build:main": "babel --no-comments --out-dir dist --ignore tests/ src --copy-files",
"travis-deploy-once": "travis-deploy-once"
},
"bin": {
"fn-cli": "dist/fn-cli"
},
"main": "dist/index.js",
"preferGlobal": true,
"repository": {
"type": "git",
"url": "https://github.com/nogsantos/fn-cli.git"
},
"keywords": [
"CLI",
"Scafold",
"Generators"
],
"engines": {
"node": ">=6.0.0"
},
"files": [
"dist",
"fn-cli",
"README.md"
],
"author": "Fabricio Nogueira <[email protected]> (http://fabricionogueira.me/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/nogsantos/fn-cli/issues"
},
"homepage": "https://github.com/nogsantos/fn-cli#readme",
"dependencies": {
"colors": "1.1.2",
"replace": "0.3.0",
"exec-sh": "0.2.1",
"cmnd": "0.2.1",
"inquirer": "5.0.1"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-loader": "7.1.2",
"babel-minify": "0.3.0",
"babel-preset-env": "1.6.1",
"babel-preset-stage-2": "6.24.1",
"babel-register": "6.26.0",
"bdd-stdin": "0.2.0",
"chai": "4.1.2",
"codecov.io": "0.1.6",
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.1.0",
"dot": "1.1.2",
"ghooks": "2.0.2",
"i": "0.3.6",
"json-loader": "0.5.7",
"mocha": "5.0.0",
"mock-stdin": "0.3.1",
"npm-run-all": "4.1.2",
"nyc": "11.4.1",
"rimraf": "2.6.2",
"semantic-release": "^12.4.1",
"travis-deploy-once": "^4.3.3",
"webpack": "3.10.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run cover && npm run check-coverage"
}
},
"babel": {
"presets": [
"stage-2"
],
"env": {
"production": {
"presets": [
"minify"
]
}
}
}
}