-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 1.92 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
{
"name": "node-env-manager",
"version": "1.1.1",
"description": "Operating on the NODE_ENV environmental variable",
"main": "dist/index.js",
"types": "lib/index.ts",
"scripts": {
"clean": "rimraf dist",
"tsc": "tsc --locale zh-cn --pretty",
"build": "npm run tsc -- -P tsconfig.json",
"build:prod": "npm run tsc -- -P tsconfig.prod.json",
"build:test": "npm run tsc -- -P tsconfig.test.json",
"pretest": "npm run clean && npm run build:test",
"test": "ava 'dist/test/**/*.{spec,e2e}.js'",
"lint": "npm run lint:typescript",
"lint:typescript": "tslint {lib,test}/**/*.ts",
"lint:javascript": "eslint ./**/*.js"
},
"keywords": [
"arylo",
"typescript",
"process",
"environment",
"env",
"nodeenv",
"node-env",
"node_env",
"NODE_ENV",
"test",
"local",
"debug",
"dev",
"develop",
"development",
"prod",
"production",
"exp",
"experience",
"gray",
"ci",
"real"
],
"engines": {
"node": ">=6"
},
"files": [
"dist",
"lib"
],
"author": "AryloYeung <arylo.open@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/Arylo/nodenv.git"
},
"bugs": {
"url": "https://github.com/Arylo/nodenv/issues"
},
"homepage": "https://github.com/Arylo/nodenv#readme",
"license": "MIT",
"yVersion": "2.1.25",
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@commitlint/lint": "^8.0.0",
"@types/node": "^12.0.4",
"ava": "^1.4.1",
"eslint": "^5.10.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^2.3.0",
"lint-staged": "^8.1.7",
"prettier": "^1.17.1",
"rimraf": "^2.6.3",
"tslint": "^5.17.0",
"typescript": "^3.5.1"
}
}