forked from Forien/foundryvtt-forien-quest-log
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
38 lines (38 loc) · 1.25 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
{
"name": "forien-quest-log",
"description": "This package.json just provides a PostCSS build script for Sass to CSS",
"license": "MIT",
"private": true,
"type": "module",
"author": "Michael Leahy <[email protected]> (https://github.com/typhonrt)",
"contributors": [
"Michael Leahy <[email protected]> (https://github.com/typhonrt)"
],
"dependencies": {
"collect.js": "^4.36.0",
"dompurify": "^3.1.5"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.0",
"@rollup/plugin-node-resolve": "^15.2.0",
"@rollup/plugin-virtual": "^3.0.0",
"@rollup/plugin-terser": "^0.4.0",
"@types/jquery": "^3.5.29",
"@typhonjs-config/eslint-config": "^0.6.0",
"@typhonjs-fvtt/eslint-config-foundry.js": "^0.8.0",
"autoprefixer": "^10.4.19",
"cssnano": "^7.0.4",
"eslint": "^8.42.0",
"postcss": "^8.4.39",
"postcss-cli": "^11.0.0",
"postcss-preset-env": "^9.6.0",
"rollup": "^4.18.0",
"sass": "^1.77.0"
},
"browserslist": [">5%", "not IE 11"],
"scripts": {
"build-css": "sass ./styles/init.scss ./css/init.css && postcss ./css/init.css -p sass -u autoprefixer postcss-preset-env cssnano -m -o ./css/init.css",
"eslint": "eslint .",
"rollup-external": "rollup --config"
}
}