UNPKG

2.19 kBJSONView Raw
1{
2 "name": "cross-env",
3 "version": "4.0.0",
4 "description": "Run scripts that set and use environment variables across platforms",
5 "main": "dist/index.js",
6 "bin": {
7 "cross-env": "dist/bin/cross-env.js"
8 },
9 "engines": {
10 "node": ">=4.0"
11 },
12 "scripts": {
13 "start": "nps",
14 "test": "nps test",
15 "commitmsg": "opt --in commit-msg --exec \"validate-commit-msg\"",
16 "precommit": "lint-staged && opt --in pre-commit --exec \"npm start validate\""
17 },
18 "files": [
19 "dist"
20 ],
21 "keywords": [],
22 "author": "Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)",
23 "license": "MIT",
24 "dependencies": {
25 "cross-spawn": "^5.1.0",
26 "is-windows": "^1.0.0"
27 },
28 "devDependencies": {
29 "all-contributors-cli": "^4.0.1",
30 "babel-cli": "^6.23.0",
31 "babel-core": "^6.23.1",
32 "babel-jest": "^19.0.0",
33 "babel-preset-env": "^1.2.0",
34 "babel-preset-stage-2": "^6.22.0",
35 "babel-register": "^6.23.0",
36 "codecov": "^1.0.1",
37 "commitizen": "^2.9.6",
38 "cz-conventional-changelog": "^2.0.0",
39 "eslint": "^3.17.0",
40 "eslint-config-kentcdodds": "^12.0.0",
41 "husky": "^0.13.2",
42 "jest-cli": "^19.0.2",
43 "lint-staged": "^3.3.1",
44 "nps": "^5.0.3",
45 "nps-utils": "^1.1.2",
46 "opt-cli": "^1.5.1",
47 "prettier-eslint-cli": "^3.1.2",
48 "semantic-release": "^6.3.6",
49 "validate-commit-msg": "^2.11.1"
50 },
51 "eslintConfig": {
52 "extends": [
53 "kentcdodds",
54 "kentcdodds/jest"
55 ],
56 "rules": {
57 "max-len": [
58 "error",
59 80
60 ]
61 }
62 },
63 "lint-staged": {
64 "*.js": [
65 "prettier-eslint --write",
66 "git add"
67 ]
68 },
69 "jest": {
70 "testEnvironment": "node",
71 "coverageThreshold": {
72 "global": {
73 "branches": 100,
74 "functions": 100,
75 "lines": 100,
76 "statements": 100
77 }
78 }
79 },
80 "config": {
81 "commitizen": {
82 "path": "node_modules/cz-conventional-changelog"
83 }
84 },
85 "repository": {
86 "type": "git",
87 "url": "https://github.com/kentcdodds/cross-env.git"
88 },
89 "bugs": {
90 "url": "https://github.com/kentcdodds/cross-env/issues"
91 },
92 "homepage": "https://github.com/kentcdodds/cross-env#readme"
93}
\No newline at end of file