forked from Rayji96/foundry-V5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.46 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
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "vtm5e",
"version": "1.6.0",
"description": "CSS compiler for the Vampire 5e system",
"scripts": {
"build": "gulp",
"compile": "gulp css",
"watch": "gulp",
"gulp": "gulp",
"eslint": "eslint -c .github/linters/.eslintrc.yml *",
"convert-packs": "fvtt package unpack -n Macros --inputDirectory ./packs/ --outputDirectory ./packs/unpacked/_macros && fvtt package pack -n Macros --inputDirectory ./packs/unpacked/_macros --outputDirectory ./packs --nedb"
},
"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"
},
"devDependencies": {
"@babel/cli": "^7.22.5",
"@babel/core": "^7.22.5",
"@babel/eslint-parser": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"eslint": "^7.17.0",
"htmlhint": "^0.14.2",
"stylelint": "^13.8.0",
"stylelint-config-standard": "^20.0.0",
"standard": "^16.0.3"
},
"babel": {},
"standard": {
"parser": "@babel/eslint-parser",
"globals": [
"$"
]
},
"eslintConfig": {
"env": {
"browser": true,
"es2021": true,
"jquery": true,
"node": true
},
"extends": "eslint:recommended",
"parser": "@babel/eslint-parser",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module",
"requireConfigFile": false
}
}
}