-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.68 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
{
"name": "y-config",
"version": "2.0.2",
"description": "Create public configuration for the project",
"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",
"pretest": "npm run clean && npm run tsc -- -P tsconfig.test.json",
"test": "ava dist/{lib,test}/**/*.spec.*",
"lint": "npm run lint:typescript && npm run lint:javascript",
"lint:typescript": "tslint {lib,test,simples}/**/*.ts",
"lint:javascript": "eslint {lib,test,simples}/**/*.js"
},
"keywords": [
"conf",
"config",
"configuration",
"config-node",
"node-config",
"env",
"environment",
"common",
"typescript",
"arylo"
],
"engines": {
"node": ">=6"
},
"files": [
"dist",
"lib",
"simples"
],
"author": "AryloYeung <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/Arylo/y-config.git"
},
"bugs": {
"url": "https://github.com/Arylo/y-config/issues"
},
"homepage": "https://github.com/Arylo/y-config#readme",
"license": "MIT",
"devDependencies": {
"@types/find-up": "^2.1.1",
"@types/lodash.merge": "^4.6.3",
"@types/node": "^10.1.2",
"ava": "^0.25.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"find-up": "^2.1.0",
"rimraf": "^2.6.2",
"tslint": "^5.10.0",
"typescript": "^2.8.3"
},
"dependencies": {
"ftconfig": "^1.1.1",
"lodash.merge": "^4.6.1"
}
}