package.json
3.92 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"_args": [
[
{
"raw": "cross-env@^3.1.4",
"scope": null,
"escapedName": "cross-env",
"name": "cross-env",
"rawSpec": "^3.1.4",
"spec": ">=3.1.4 <4.0.0",
"type": "range"
},
"/Users/admin/Documents/workspace/programming"
]
],
"_from": "cross-env@>=3.1.4 <4.0.0",
"_id": "cross-env@3.1.4",
"_inCache": true,
"_location": "/cross-env",
"_nodeVersion": "6.9.2",
"_npmOperationalInternal": {
"host": "packages-12-west.internal.npmjs.com",
"tmp": "tmp/cross-env-3.1.4.tgz_1483416901934_0.5976849617436528"
},
"_npmUser": {
"name": "kentcdodds",
"email": "kent@doddsfamily.us"
},
"_npmVersion": "2.15.11",
"_phantomChildren": {
"lru-cache": "4.0.2",
"which": "1.2.12"
},
"_requested": {
"raw": "cross-env@^3.1.4",
"scope": null,
"escapedName": "cross-env",
"name": "cross-env",
"rawSpec": "^3.1.4",
"spec": ">=3.1.4 <4.0.0",
"type": "range"
},
"_requiredBy": [
"#DEV:/"
],
"_resolved": "https://registry.npmjs.org/cross-env/-/cross-env-3.1.4.tgz",
"_shasum": "56e8bca96f17908a6eb1bc2012ca126f92842130",
"_shrinkwrap": null,
"_spec": "cross-env@^3.1.4",
"_where": "/Users/admin/Documents/workspace/programming",
"author": {
"name": "Kent C. Dodds",
"email": "kent@doddsfamily.us",
"url": "http://kentcdodds.com/"
},
"bin": {
"cross-env": "bin/cross-env.js"
},
"bugs": {
"url": "https://github.com/kentcdodds/cross-env/issues"
},
"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"
},
"description": "Run commands that set environment variables across platforms",
"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"
},
"directories": {},
"dist": {
"shasum": "56e8bca96f17908a6eb1bc2012ca126f92842130",
"tarball": "https://registry.npmjs.org/cross-env/-/cross-env-3.1.4.tgz"
},
"engines": {
"node": ">=4.0"
},
"gitHead": "b4a00630504bb21a5ad7bcf7fdb2ef1b4208a176",
"homepage": "https://github.com/kentcdodds/cross-env#readme",
"keywords": [
"environment variables",
"cross platform"
],
"license": "MIT",
"main": "dist/index.js",
"maintainers": [
{
"name": "kentcdodds",
"email": "kent@doddsfamily.us"
}
],
"name": "cross-env",
"optionalDependencies": {},
"readme": "ERROR: No README data found!",
"repository": {
"type": "git",
"url": "git+https://github.com/kentcdodds/cross-env.git"
},
"scripts": {
"build": "babel --copy-files --out-dir dist --ignore *.test.js src",
"check-coverage": "istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"commit": "git-cz",
"eslint": "eslint src/ -c other/src.eslintrc --ignore-path other/src.eslintignore && eslint src/*.test.js",
"prebuild": "rimraf dist && mkdir dist",
"prepublish": "npm run build",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"start": "npm run test:watch",
"test": "istanbul cover -x *.test.js node_modules/mocha/bin/_mocha -- -R spec src/*.test.js --compilers js:babel/register",
"test:watch": "mocha src/*.test.js -w --compilers js:babel/register"
},
"version": "3.1.4"
}