UNPKG

1.58 kBJSONView Raw
1{
2 "name": "cross-env",
3 "version": "7.0.2",
4 "description": "Run scripts that set and use environment variables across platforms",
5 "main": "src/index.js",
6 "bin": {
7 "cross-env": "src/bin/cross-env.js",
8 "cross-env-shell": "src/bin/cross-env-shell.js"
9 },
10 "engines": {
11 "node": ">=10.14",
12 "npm": ">=6",
13 "yarn": ">=1"
14 },
15 "scripts": {
16 "lint": "kcd-scripts lint",
17 "setup": "npm install && npm run validate -s",
18 "test": "kcd-scripts test",
19 "test:update": "npm test -- --updateSnapshot --coverage",
20 "validate": "kcd-scripts validate"
21 },
22 "husky": {
23 "hooks": {
24 "pre-commit": "kcd-scripts pre-commit"
25 }
26 },
27 "files": [
28 "src",
29 "!__tests__"
30 ],
31 "keywords": [
32 "cross-environment",
33 "environment variable",
34 "windows"
35 ],
36 "author": "Kent C. Dodds <me@kentcdodds.com> (https://kentcdodds.com)",
37 "license": "MIT",
38 "dependencies": {
39 "cross-spawn": "^7.0.1"
40 },
41 "devDependencies": {
42 "kcd-scripts": "^5.2.0"
43 },
44 "eslintConfig": {
45 "extends": "./node_modules/kcd-scripts/eslint.js"
46 },
47 "// babel 1": "this disables all built-in plugins from kcd-scripts for tests",
48 "// babel 2": "that way we ensure that the tests run without compilation",
49 "// babel 3": "because this module is published as-is. It is not compiled.",
50 "babel": {},
51 "repository": {
52 "type": "git",
53 "url": "https://github.com/kentcdodds/cross-env.git"
54 },
55 "bugs": {
56 "url": "https://github.com/kentcdodds/cross-env/issues"
57 },
58 "homepage": "https://github.com/kentcdodds/cross-env#readme"
59}