-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.93 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
{
"name": "environment-override",
"version": "1.0.3",
"description": "Takes a JSON object and checks the environment variables for overrides to its values. Great for HAPIjs manifests and other configuration.",
"main": "./dist/environment-override.js",
"scripts": {
"prebuild": "rimraf dist && rimraf bin && mkdir dist && mkdir bin",
"build": "babel --copy-files --out-file dist/environment-override.js src/environment-override.js && babel --out-file bin/show.js src/show.js",
"postbuild": "chmod +x bin/show.js",
"eslint": "eslint src",
"test": "mocha src/*.test.js --compilers js:babel-core/register",
"test:watch": "npm t -- -w",
"cover": "nyc --reporter=lcov --reporter=text --require babel-core/register npm t",
"check-coverage": "nyc check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"report-coverage": "cat ./coverage/lcov.info | codecov"
},
"bin": {
"environment-override-show": "./bin/show.js"
},
"license": "MIT",
"dependencies": {
"cli": "^1.0.1",
"colors": "^1.1.2",
"diff": "^3.2.0"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.1.10",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"eslint": "^3.16.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.0",
"mocha": "^3.2.0",
"nyc": "^10.1.2",
"rimraf": "^2.6.1",
"sinon": "^1.17.7"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/a-c-m/environment-override.git"
},
"keywords": [
"config",
"hapijs",
"environment"
],
"author": "Alex McFadyen",
"bugs": {
"url": "https://github.com/a-c-m/environment-override/issues"
},
"homepage": "https://github.com/a-c-m/environment-override#readme"
}