-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.31 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
{
"name": "preconfig",
"version": "0.0.0",
"engines": {
"node": ">=12.0.0 < 15.0.0"
},
"description": "A language agnostic config preparation tool",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"keywords": [
"config",
"template"
],
"homepage": "https://github.com/alvis/preconfig#readme",
"bugs": {
"url": "https://github.com/alvis/preconfig/issues"
},
"license": "MIT",
"author": {
"name": "Alvis HT Tang",
"email": "[email protected]"
},
"bin": {
"preconfig": "./bin/cli"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alvis/preconfig.git"
},
"scripts": {
"postinstall": "presetter bootstrap",
"build": "run build",
"clean": "run clean",
"lint": "run lint",
"prepare": "run prepare",
"release": "run release",
"test": "run test --"
},
"devDependencies": {
"@types/fs-extra": "8.x",
"@types/js-yaml": "3.x",
"@types/lodash": "^4.x",
"@types/yargs": "15.x",
"presetter": "^1.x",
"presetter-preset": "^1.x",
"ts-toolbelt": "^6.x"
},
"dependencies": {
"callsite-record": "4.x",
"chalk": "4.x",
"fs-extra": "9.x",
"get-stdin": "7.x",
"js-yaml": "3.x",
"lodash": "^4.x",
"source-map-support": "0.5.x",
"ts-error": "^1.x",
"yargs": "^15.x"
}
}