-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 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
{
"name": "numenera-foundryvtt",
"version": "1.8.1",
"description": "Support for the Cypher System (including Numenera and The Strange role playing games) for the Foundry virtual tabletop",
"devDependencies": {
"@league-of-foundry-developers/foundry-vtt-types": "^0.8.8-7",
"ava": "^3.13.0",
"eslint": "^7.10.0",
"esm": "^3.2.25",
"gulp": "^4.0.2",
"gulp-sass": "^4.1.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"rollup": "^2.28.2",
"rollup-plugin-copy2": "^0.2.0",
"rollup-plugin-scss": "^2.6.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-zip": "^1.0.1",
"terser": "^5.3.4"
},
"main": "numenera.js",
"scripts": {
"_css": "gulp css",
"_clear": "rimraf dist/** *.zip",
"_make-bundle": "npx rollup -c",
"build": "run-s _clear _css _make-bundle",
"watch": "gulp",
"test": "ava"
},
"ava": {
"require": [
"esm"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/SolarBear/Numenera-FoundryVTT.git"
},
"author": "SolarBear (David Lacerte)",
"license": "MIT",
"bugs": {
"url": "https://github.com/SolarBear/Numenera-FoundryVTT/issues"
},
"homepage": "https://github.com/SolarBear/Numenera-FoundryVTT#readme"
}