-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.61 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 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
{
"name": "unearthed-arcana",
"version": "1.0.0",
"description": "Unearthed Arcana",
"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-ua",
"test:dependencies": "test-dependencies",
"test:clean": "npm run build:clean:base -- --dry",
"test:file-contents": "test-file-contents --img-repo-name unearthed-arcana-img --url-prefix-expected https://raw.githubusercontent.com/TheGiddyLimit/unearthed-arcana-img/main/",
"test:file-locations": "test-file-locations",
"test:file-names": "test-file-names --name-regex \"^(?:Unearthed Arcana(?: \\d{4})? - .+|Wayfinder's Guide to Eberron)\\.json$\"",
"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:js": "eslint . --ext .js,.cjs,.mjs",
"lint:js": "npm run test:js -- --fix",
"test": "npm run test:clean && npm run test:json && npm run test:dependencies && 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 && npm run test:js",
"lint": "npm run lint:js"
},
"author": "Giddy",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^10.0.1",
"5etools-utils": "^0.16.35",
"commander": "^14.0.3",
"eslint": "^10.0.1"
}
}