-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.33 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
{
"private": true,
"name": "cyclops-infobook-html-evilcraft",
"version": "1.0.0",
"description": "Output EvilCraft infobooks as HTML",
"main": "index.js",
"repository": "[email protected]:CyclopsMC/infobook-html.git",
"bugs": {
"url": "https://github.com/CyclopsMC/infobook-html-evilcraft/issues"
},
"homepage": "https://github.com/CyclopsMC/infobook-html-evilcraft#readme",
"author": "Ruben Taelman <[email protected]>",
"license": "MIT",
"files": [
"bin/**/*.d.ts",
"bin/**/*.js",
"lib/**/*.d.ts",
"lib/**/*.js",
"template/**/*.pug",
"assets/**/*.pug",
"index.d.ts",
"index.js"
],
"pre-commit": [
"build",
"lint"
],
"devDependencies": {
"pre-commit": "^1.2.2",
"tslint": "^5.16.0",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.4.5"
},
"scripts": {
"lint": "tslint index.ts lib/**/*.ts test/**/*.ts bin/**/*.ts --exclude '**/*.d.ts'",
"build": "tsc",
"build-watch": "tsc --watch",
"validate": "npm ls",
"prepare": "npm run build",
"generate": "npm run generate:metadata && npm run generate:html",
"generate:metadata": "generate-mod-metadata modpack.json generate",
"generate:html": "generate-cyclops-infobook-html config.json output"
},
"dependencies": {
"cyclops-infobook-html": "^4.0.0",
"pug": "^2.0.4"
}
}