forked from kentcdodds/cross-env
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.25 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
{
"name": "cross-env",
"version": "0.0.0-semanticallly-released.0",
"description": "Run commands that set environment variables across platforms",
"main": "dist/index.js",
"bin": {
"cross-env": "bin/cross-env.js"
},
"engines": {
"node" : ">=4.0"
},
"scripts": {
"start": "npm run test:watch",
"prebuild": "rimraf dist && mkdir dist",
"build": "babel --copy-files --out-dir dist --ignore *.test.js src",
"commit": "git-cz",
"eslint": "eslint src/ -c other/src.eslintrc --ignore-path other/src.eslintignore && eslint src/*.test.js",
"check-coverage": "istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"test:watch": "mocha src/*.test.js -w --compilers js:babel/register",
"test": "istanbul cover -x *.test.js node_modules/mocha/bin/_mocha -- -R spec src/*.test.js --compilers js:babel/register",
"prepublish": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/kentcdodds/cross-env.git"
},
"keywords": [
"environment variables",
"cross platform"
],
"author": "Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/kentcdodds/cross-env/issues"
},
"homepage": "https://github.com/kentcdodds/cross-env#readme",
"devDependencies": {
"babel": "5.8.23",
"chai": "3.3.0",
"codecov.io": "0.1.6",
"commitizen": "2.4.4",
"cz-conventional-changelog": "1.1.4",
"eslint": "1.5.1",
"eslint-config-kentcdodds": "4.0.1",
"eslint-plugin-mocha": "1.0.0",
"ghooks": "1.0.0",
"istanbul": "0.3.21",
"mocha": "2.3.3",
"proxyquire": "1.7.2",
"rimraf": "^2.5.2",
"semantic-release": "4.3.5",
"sinon": "1.17.1",
"sinon-chai": "2.8.0",
"validate-commit-msg": "1.0.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog/"
},
"ghooks": {
"commit-msg": "validate-commit-msg && npm run eslint && npm t && npm run check-coverage && echo 'pre-commit checks good 👍'"
}
},
"dependencies": {
"cross-spawn": "^3.0.1"
}
}