-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
97 lines (97 loc) · 3.24 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
{
"name": "env-universal",
"version": "0.4.0",
"author": "WeWork Digital <[email protected]>",
"contributors": [
"Mike Nason <[email protected]> (https://github.com/nason)"
],
"license": "MIT",
"description": "Standard environment utils and constants for browser and node JavaScript applications",
"keywords": [
"universal",
"environmment",
"env",
"webpack",
"dotenv"
],
"main": "dist/index.js",
"jsnext:main": "src/index.js",
"config": {
"ghooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run security-scan"
}
},
"scripts": {
"pretest": "npm run bundle",
"test": "npm run test:node && npm run test:browser",
"tdd": "npm-run-all --parallel test:*:tdd",
"test:coverage": "nyc npm run test:node",
"test:coverage:coveralls-report": "nyc report --reporter=text-lcov --show-process-tree=false | coveralls",
"test:node": "SERVER=true mocha test/runner test/specs/**/*-spec.js --opts test/node/mocha.opts",
"test:node:tdd": "npm run test:node -- --watch",
"test:browser": "CLIENT=true karma start test/browser/karma.conf.js",
"test:browser:tdd": "npm run test:browser -- --auto-watch --no-single-run",
"test:bundle:tdd": "npm run bundle -- --watch",
"test:ci": "NODE_ENV=testCI npm run test:coverage && npm run test:browser",
"bundle": "rollup -c rollup.config.js",
"docs": "documentation build src/index.js --github --format md --output API.md",
"lint": "eslint --format ./node_modules/eslint-friendly-formatter --cache src test",
"security-scan": "nsp check --output summary --warn-only",
"preversion": "npm run docs && git add API.md",
"version": "auto-changelog --template compact --package; git add CHANGELOG.md",
"release": "np"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/wework/env-universal.git"
},
"bugs": {
"url": "https://github.com/wework/env-universal/issues"
},
"homepage": "https://github.com/wework/env-universal#readme",
"peerDependencies": {
"lodash": "4.x"
},
"devDependencies": {
"auto-changelog": "0.3.1",
"babel-core": "6.25.0",
"babel-loader": "7.1.1",
"babel-plugin-external-helpers": "6.22.0",
"babel-polyfill": "6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"chai": "4.1.0",
"coveralls": "2.13.1",
"documentation": "4.0.0-rc.1",
"eslint": "3.12.2",
"eslint-friendly-formatter": "2.0.6",
"eslint-import-resolver-node": "0.3.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-mocha": "4.8.0",
"ghooks": "1.3.2",
"imports-loader": "0.7.1",
"karma": "1.7.0",
"karma-coverage": "1.1.1",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.3",
"karma-phantomjs-launcher": "1.0.4",
"karma-sauce-launcher": "1.1.0",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "1.8.0",
"mocha": "3.4.2",
"np": "2.16.0",
"nsp": "2.6.3",
"nyc": "11.0.3",
"phantomjs-prebuilt": "2.1.14",
"rollup": "0.38.2",
"rollup-plugin-babel": "2.7.1",
"rollup-plugin-filesize": "1.0.1",
"rollup-watch": "2.5.0",
"semver": "5.4.0",
"sinon": "1.17.7",
"sinon-chai": "2.8.0",
"webpack": "1.14.0",
"yarn-run-all": "3.1.1"
}
}