-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.58 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
{
"name": "easy-template-config",
"version": "1.2.0",
"description": "easywebpack cli template config",
"keywords": [
"npm",
"npm package",
"unit test",
"eslint",
"travis",
"travis-ci",
"code coverage",
"changelog"
],
"dependencies": {
"chalk": "^4.1.0",
"inquirer": "^7.3.3"
},
"devDependencies": {
"chai": "^4.1.1",
"codecov": "^3.0.0",
"conventional-changelog-cli": "^1.3.5",
"cross-env": "^5.0.5",
"eslint": "^4.5.0",
"eslint-config-eslint": "^4.0.0",
"mocha": "^3.5.0",
"nyc": "^11.1.0"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"lint": "eslint .",
"fix": "eslint --fix .",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"test": "nyc --reporter=html --reporter=text mocha --timeout=1000000",
"cov": "nyc report --reporter=lcov && codecov --token=e971d1e7-39e2-44b1-b1ee-f4345b0adbee",
"ci": "npm run lint && npm run cov",
"ii": "npm install --registry https://registry.npmmirror.com",
"pub": "npm publish --registry https://registry.npmjs.org"
},
"files": [
"index.js",
"lib"
],
"nyc": {
"exclude": [
"**/*.spec.js",
"test/*.test.js"
]
},
"ci": {
"version": "8, 10, 12, 14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/easy-team/easy-template-config.git"
},
"bugs": {
"url": "https://github.com/easy-team/easy-template-config/issues"
},
"homepage": "https://github.com/easy-team/easy-template-config#readme",
"author": "[email protected]",
"license": "MIT"
}