-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.2 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.2 KB
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
{
"name": "primitive-enum",
"version": "0.9.6",
"description": "Lightweight enums with primitive datatypes",
"main": "index.js",
"scripts": {
"test": "istanbul cover --report html -x dist/ _mocha -- test/**/*.js",
"travis": "istanbul cover --report lcovonly -x dist/ _mocha",
"posttravis": "istanbul check-coverage --statements $npm_package_config_min_coverage --branches $npm_package_config_min_coverage --lines $npm_package_config_min_coverage"
},
"config": {
"min_coverage": 80
},
"repository": {
"type": "git",
"url": "git+https://github.com/evan-king/node-primitive-enum.git"
},
"keywords": [
"enum",
"enumeration",
"immutable",
"primitive",
"constants"
],
"author": "Evan King",
"license": "MIT",
"bugs": {
"url": "https://github.com/evan-king/node-primitive-enum/issues"
},
"homepage": "https://github.com/evan-king/node-primitive-enum#readme",
"devDependencies": {
"babel-core": "^6.7.6",
"babel-polyfill": "^6.7.4",
"babel-preset-es2015": "^6.6.0",
"babelify": "^7.2.0",
"browserify": "^13.0.0",
"browserify-global-shim": "^1.0.3",
"chai": "^3.5.0",
"istanbul": "^0.4.3",
"mocha": "^3.1.2"
}
}