-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
34 lines (34 loc) · 1.29 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
{
"name": "draw-steel",
"version": "1.0.0",
"description": "The Draw Steel system by MCDM for Foundry Virtual Tabletop",
"scripts": {
"createSymlinks": "node ./tools/create-symlinks.mjs",
"pullJSONtoLDB": "node ./tools/pullJSONtoLDB.mjs",
"pushLDBtoJSON": "node ./tools/pushLDBtoJSON.mjs",
"unpack": "npm run pushLDBtoJSON",
"build": "npm run build:packs && npm run build:css && npm run build:code",
"build:packs": "npm run pullJSONtoLDB",
"build:css": "sass src/scss/draw-steel.scss css/draw-steel.css --style=expanded --no-source-map",
"build:css:watch": "sass src/scss/draw-steel.scss css/draw-steel.css --style=expanded --source-map --watch",
"build:code": "rollup -c --sourcemap",
"lint": "eslint src/module/**.mjs",
"lint:fix": "eslint --fix src/module/**.mjs",
"postinstall": "npm run build:css && npm run createSymlinks",
"prepareRelease": "npm run build:packs && npm run build:code"
},
"browserslist": [
"last 3 versions"
],
"author": "Joseph Meehan",
"private": true,
"devDependencies": {
"@foundryvtt/foundryvtt-cli": "^1.0.3",
"@html-eslint/eslint-plugin": "^0.26.0",
"@html-eslint/parser": "^0.26.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"eslint": "^8.57.0",
"rollup": "^4.9.1",
"sass": "^1.53.0"
}
}