forked from TheGiddyLimit/homebrew
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.5 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.5 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
{
"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": "clean-html",
"test:json": "test-json-brew",
"test:clean": "npm run build:clean:base -- --dry",
"test:file-contents": "test-file-contents --img-repo-name homebrew-img --url-prefix-expected https://raw.githubusercontent.com/TheGiddyLimit/homebrew-img/main/",
"test:file-locations": "test-file-locations",
"test:file-names": "test-file-names",
"test:file-props": "test-file-props",
"test:edition-sources": "test-edition-sources",
"test:img-directories": "node _test/test-img-dir.js",
"test:html": "node _test/test-html.js",
"test": "npm run test:clean && npm run test:json && npm run test:file-locations && npm run test:file-names && npm run test:file-props && npm run test:img-directories && npm run test:file-contents && npm run test:edition-sources && 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.15.12",
"commander": "^14.0.3"
}
}