forked from Rayji96/foundry-V5
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 753 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 753 Bytes
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
{
"name": "vtm5e",
"version": "1.0.0",
"description": "CSS compiler for the Vampire 5e system",
"scripts": {
"build": "gulp",
"compile": "gulp css",
"watch": "gulp",
"gulp": "gulp"
},
"browserslist": [
"last 3 versions"
],
"author": "Ray Ji",
"license": "MIT",
"private": true,
"dependencies": {
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-sass": "^4.1.0",
"gulp-sourcemaps": "^2.6.5",
"standard": "^16.0.3"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.17.0",
"htmlhint": "^0.14.2",
"stylelint": "^13.8.0",
"stylelint-config-standard": "^20.0.0"
},
"standard": {
"parser": "babel-eslint",
"globals": [
"$"
]
}
}