-
-
Notifications
You must be signed in to change notification settings - Fork 602
/
package.json
37 lines (37 loc) · 1.28 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
{
"name": "homebrew",
"version": "1.0.0",
"description": "5etools homebrew",
"type": "module",
"private": true,
"scripts": {
"build": "npm run build:clean && npm run build:index",
"build:index": "node _node/generate-index.js",
"build:clean": "npm run build:clean:base",
"build:clean:base": "node _node/clean-and-test.js",
"build:clean:html": "node _node/clean-html.js",
"test:json": "test-json-brew",
"test:file-contents": "node _test/test-file-contents.js",
"test:file-locations": "test-file-locations",
"test:file-names": "test-file-names",
"test:img-directories": "node _test/test-img-dir.js",
"test:html": "node _test/test-html.js",
"test": "npm run build:clean && npm run build:index && npm run test:json && npm run test:file-locations && npm run test:file-names && npm run test:img-directories && npm run test:file-contents && npm run test:html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheGiddyLimit/homebrew.git"
},
"author": "TheGiddyLimit + Friends",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheGiddyLimit/homebrew/issues"
},
"homepage": "https://github.com/TheGiddyLimit/homebrew#readme",
"devDependencies": {
"5etools-utils": "^0.12.58",
"commander": "^9.4.1",
"he": "^1.2.0",
"sanitize-html": "^2.12.1"
}
}