-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.61 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.61 KB
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
{
"private": true,
"name": "cyclops-infobook-html-integrateddynamics",
"version": "1.0.0",
"description": "Output Integrated Dynamics infobooks as HTML",
"main": "index.js",
"repository": "git@github.com:CyclopsMC/infobook-html.git",
"bugs": {
"url": "https://github.com/CyclopsMC/infobook-html-integrateddynamics/issues"
},
"homepage": "https://github.com/CyclopsMC/infobook-html-integrateddynamics#readme",
"author": "Ruben Taelman <rubensworks@gmail.com>",
"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": "^5.0.0"
},
"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:icons && npm run generate:html && npm run generate:compress",
"generate:modpack": "convert-pom-to-modpack modpack.pom.xml settings.xml modpack.json",
"generate:metadata": "generate-mod-metadata modpack.json generate",
"generate:icons": "generate-icons modpack.json",
"generate:html": "generate-cyclops-infobook-html config.json output",
"generate:compress": "compress-icons output"
},
"dependencies": {
"cyclops-infobook-html": "^5.2.2",
"pug": "^2.0.4"
}
}