-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.16 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.16 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
39
40
41
42
43
44
45
46
47
48
{
"name": "dungeonworld",
"version": "1.0.0",
"description": "CSS compiler for the Dungeon World system",
"scripts": {
"build": "gulp build",
"compile": "gulp css",
"watch": "gulp",
"gulp": "gulp",
"yaml": "gulp yaml",
"compilePacks": "gulp compilePacks",
"extractPacks": "gulp extractPacks",
"patch": "gulp patch",
"minor": "gulp minor",
"major": "gulp major",
"symlinks:create": "node ./tools/create-symlink.mjs"
},
"browserslist": [
"last 3 versions"
],
"author": "Asacolips",
"license": "MIT",
"private": true,
"dependencies": {
"del": "^6.1.1",
"fs": "^0.0.1-security",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^8.0.0",
"gulp-clean": "^0.4.0",
"gulp-git": "^2.10.1",
"gulp-replace": "^1.1.3",
"gulp-sass": "^5.1.0",
"gulp-tag-version": "^1.3.1",
"gulp-webp": "^4.0.1",
"gulp-yaml": "^2.0.4",
"js-yaml": "^4.1.0",
"merge-stream": "^2.0.0",
"nedb": "^1.8.0",
"path": "^0.12.7",
"sass": "^1.52.1",
"through2": "^4.0.2",
"yargs": "^17.5.1"
},
"devDependencies": {
"@foundryvtt/foundryvtt-cli": "^1.0.2",
"gulp-shell": "^0.8.0"
}
}