-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
67 lines (67 loc) · 2.1 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
{
"name": "common-env",
"version": "6.4.0",
"keywords": [
"environment",
"configuration",
"process.env",
"env",
"var",
"getenv",
"variables"
],
"description": "A nice little helper for retrieving configuration from environment variable",
"main": "./src/lib",
"directories": {
"doc": "docs",
"test": "test"
},
"engines": {
"node": ">=6"
},
"scripts": {
"test": "npm run test-unit && npm run test-coverage",
"test-unit": "mocha $(find src -name '*.test.js')",
"test-watch": "mocha -R min -w $(find src -name '*.test.js')",
"test-coverage": "nyc --all --statements=100 --lines=100 --functions=100 --branches=100 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- mocha -R spec -t 100000 $(find src -name '*.test.js')",
"send-coverage": "cat ./coverage/lcov.info | coveralls",
"check-build": "check-build",
"update": "updtr",
"release-after-pr-patch": "git pull --rebase && npm run test && npm-release patch && npm run changelog-git",
"release-after-pr-minor": "git pull --rebase && npm run test && npm-release minor && npm run changelog-git",
"changelog": "conventional-changelog -i CHANGELOG.md -s -r 0",
"changelog-git": "npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master"
},
"repository": {
"type": "git",
"url": "https://github.com/FGRibreau/common-env.git"
},
"author": "Francois-Guillaume Ribreau <[email protected]> (http://fgribreau.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/FGRibreau/common-env/issues"
},
"nyc": {
"exclude": [
"node_modules",
"dist",
"coverage",
"webpack.config.js",
"**/**.test.js"
]
},
"homepage": "https://github.com/FGRibreau/common-env",
"devDependencies": {
"chai": "^3.5.0",
"check-build": "^2.8.2",
"coveralls": "^2.11.12",
"conventional-changelog-cli": "^1.2.0",
"mocha": "^3.0.2",
"npm-release": "^1.0.0",
"nyc": "^10.0.0",
"updtr": "^0.2.1"
},
"dependencies": {
"lodash": "^4.17.11"
}
}