-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.67 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
{
"name": "waregen",
"version": "1.0.0",
"main": "dist/lib/generator/index.js",
"bin": {
"waregen": "dist/bin.js"
},
"author": "Matt McFarland <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "node dist/bin",
"build:typescript": "tsc -p .",
"build:exe": "pkg . --output build/waregen.exe",
"build:zip": "node scripts/make-zip.js",
"build": "node scripts/build.js",
"build:clean": "node scripts/clean",
"build:watch": "tsc -p . -watch",
"build:bbcode": "node scripts/make-bbcode",
"build:x4post": "node scripts/make-x4post",
"build:html": "node scripts/make-html",
"types": "ts-node scripts/create-types.ts"
},
"dependencies": {
"fs-jetpack": "^2.2.0",
"idx": "^2.5.2",
"lodash": "^4.17.11",
"mkdirp": "^0.5.1",
"signale": "^1.3.0",
"xml2js": "^0.4.19",
"yargs": "^12.0.5"
},
"devDependencies": {
"@types/jest": "^23.3.10",
"@types/lodash": "^4.14.119",
"@types/mkdirp": "^0.5.2",
"@types/node": "^10.12.18",
"@types/sax": "^1.0.1",
"@types/signale": "^1.2.0",
"@types/xml2js": "^0.4.3",
"@types/yargs": "^12.0.2",
"archiver": "^3.0.0",
"husky": "^1.3.0",
"jest": "^23.6.0",
"maketypes": "^1.1.2",
"marked": "^0.5.2",
"md2bbc": "^1.1.0",
"metro-memory-fs": "^0.51.1",
"pkg": "^4.3.5",
"prettier": "^1.15.3",
"pretty-quick": "^1.8.0",
"rimraf": "^2.6.2",
"shelljs": "^0.8.3",
"tee": "^0.2.0",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"typescript": "^3.2.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {
"endOfLine": "lf"
}
}