-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·64 lines (64 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
59
60
61
62
63
64
{
"name": "creature-features",
"version": "5.1.0",
"description": "Feature flags for node.js",
"main": "index.js",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"lint": "eslint ./index.js ./test/*.test.js",
"test": "cross-env jest test/*.test.js ",
"cov": "jest test/*.test.js --coverage",
"coverage": "jest --coverage --coverageReporters=text-lcov | coveralls",
"predocs": " jest test/*.test.js --coverage --coverageDirectory=./dist/coverage ",
"docs": "publisher",
"postinstall": "node ./post-install.js",
"preversion": "npm test",
"postversion": "publisher",
"postpublish": "git push origin --all --follow-tags && npm run docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kevnz/creature-features.git"
},
"keywords": [
"feature",
"flags",
"toggles",
"feature flags",
"feature toggles",
"continuous delivery",
"continuous integration"
],
"author": "Kevin Isom <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kevnz/creature-features/issues"
},
"homepage": "https://kevinisom.info/creature-features/",
"devDependencies": {
"@kev_nz/publisher": "^4.0.1",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.6",
"prettier": "^2.3.2"
},
"dependencies": {
"debug": "^4.3.2",
"end-with": "^1.0.2",
"file-exists": "^5.0.1",
"random-weighted": "^1.0.0"
},
"jest": {
"coverageReporters": [
"json",
"lcov",
"html"
]
}
}