-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 2.29 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "ftconfig",
"version": "1.1.8",
"description": "F*ck the config",
"main": "dist/index.js",
"types": "dist/index.d.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 -v dist/test/**/*.{spec,e2e}.js",
"lint": "npm run lint:typescript",
"lint:typescript": "tslint {lib,test}/**/*.ts",
"lint:javascript": "eslint ./**/*.js"
},
"keywords": [
"arylo",
"typescript",
"config",
"easy-to-use",
"parser",
"serializer",
"json",
"yml",
"yaml",
"ini",
"toml",
"json5",
"hjson"
],
"engines": {
"node": ">=6"
},
"files": [
"dist",
"lib",
"types"
],
"author": "AryloYeung <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/Arylo/ftconfig.git"
},
"bugs": {
"url": "https://github.com/Arylo/ftconfig/issues"
},
"homepage": "https://github.com/Arylo/ftconfig#readme",
"license": "MIT",
"yVersion": "2.1.25",
"devDependencies": {
"@commitlint/cli": "^8.0.0",
"@commitlint/config-conventional": "^8.0.0",
"@commitlint/lint": "^8.0.0",
"@iarna/toml": "^2.2.3",
"@types/find-up": "^2.1.1",
"@types/hjson": "^2.4.1",
"@types/ini": "^1.3.30",
"@types/js-yaml": "^3.12.1",
"@types/json5": "0.0.30",
"@types/make-dir": "^1.0.3",
"@types/node": "^14.17.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",
"find-up": "^3.0.0",
"husky": "^2.3.0",
"lint-staged": "^8.1.7",
"prettier": "^1.17.1",
"rimraf": "^2.6.3",
"tslint": "^5.17.0",
"typescript": "^4.3.5"
},
"dependencies": {
"hjson": "^3.1.2",
"ini": "^1.3.5",
"js-yaml": "^3.13.1",
"json5": "^2.1.0",
"make-dir": "^1.3.0"
},
"peerDependencies": {
"@iarna/toml": "^2.2.1",
"hjson": "^3.1.2",
"ini": "^1.3.5",
"js-yaml": "^3.12.0",
"json5": "^2.1.0"
}
}