-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.62 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
99
100
101
102
103
104
{
"name": "kube-f",
"version": "0.2.8",
"description": "A framework for easy scaling through namespaces",
"main": "./lib/index.js",
"author": "Ryan Vlaming <[email protected]>",
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.3"
},
"keywords": [
"modern",
"node",
"seed",
"boilerplate",
"CI",
"tests",
"list",
"coverage",
"ES6"
],
"scripts": {
"?info": "Display information about the scripts.",
"info": "npm-scripts-info",
"?start": "Startup the module.",
"start": "if-env NODE_ENV=production && npm run start:prod || npm run start:dev",
"?start:prod": "Startup the module with a `production` environment.",
"start:prod": "NODE_ENV=production node ./lib/index.js",
"?start:dev": "Startup the module with a `development` environment.",
"start:dev": "babel-node ./src/index.js",
"?debug": "Start a debugger for the `main` entry point.",
"debug": "babel-node --inspect --debug-brk ./src/index.js",
"?debug:tests": "Start a debugger for the tests",
"debug:tests": "mocha --inspect --debug-brk --compilers js:babel-register ./test/*.js",
"precommit": "if-env IGNORE_GHOOKS=true || npm run test",
"?commit": "Run a wizard to do a `git commit` and `git push` following commitizen rules.",
"commit": "git-cz && git push origin HEAD",
"?commit:all": "Add all changes to stage and run `npm run commit`",
"commit:all": "git add -A && npm run commit",
"pretest": "npm run build",
"?test": "Build and run all tests.",
"test": "npm run lint && nyc --check-coverage mocha --compilers js:babel-register ./test/*.js",
"?test:watch": "Build, run all tests and watch for changes.",
"test:watch": "mocha ./test/*.js --watch",
"?lint": "Run Eslint.",
"lint": "eslint .",
"?lint:watch": "Run Eslint, and watch for chhanges.",
"lint:watch": "esw -w --ignore-path .gitignore .",
"?coverage": "Upload coverage report to `codecov.io`.",
"coverage": "nyc report --reporter=text-lcov | codecov",
"?coverage:summary": "Show a coverage summary in the console.",
"coverage:summary": "nyc report",
"prebuild": "rimraf lib",
"?build": "Check types and build the source to the `lib` folder.",
"build": "babel src --out-dir lib",
"?setup": "Install dependencies and run the tests.",
"setup": "npm install && npm test",
"?semantic-release": "Automatically publish the package following semantic versioning rules.",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"@types/node": "^8.10.38",
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-module-resolver": "^2.7.1",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"codecov": "^2.3.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"esdoc": "^1.0.4",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^4.6.1",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-import-resolver-babel-module": "^3.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-vue": "^5.0.0",
"husky": "^0.14.3",
"if-env": "^1.0.0",
"mocha": "^3.5.0",
"npm-scripts-info": "^0.3.9",
"nyc": "^11.2.0",
"rimraf": "^2.6.1",
"semantic-release": "^7.0.2",
"typescript": "^2.5.2"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"nyc": {
"lines": 20,
"statements": 20,
"functions": 20,
"branches": 20,
"reporter": [
"lcov",
"text-summary"
]
}
}