-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
42 lines (42 loc) · 1.05 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
{
"author": "Tim L. White <[email protected]>",
"bugs": {
"url": "https://github.com/foundryvtt-dcc/dcc/issues"
},
"description": "Dungeon Crawl Classics RPG Support for Foundry VTT",
"devDependencies": {
"sass": "^1.69.3",
"standard": "^17.1.2",
"stylelint": "^16.10.0",
"stylelint-config-sass-guidelines": "^12.1.0",
"vitest": "^2.0.5"
},
"directories": {
"test": "module/tests"
},
"engines": {
"node": ">=20.0.0 <21",
"npm": ">10.0.0 <11"
},
"homepage": "https://github.com/foundryvtt-dcc/dcc#readme",
"keywords": [
"FoundryVTT",
"DCC",
"Dungeon Crawl Classics"
],
"license": "MIT",
"main": "module/dcc.js",
"name": "dcc",
"repository": {
"type": "git",
"url": "git+https://github.com/foundryvtt-dcc/dcc.git"
},
"scripts": {
"format": "standard --fix && stylelint \"**/*.scss\" --fix",
"test": "vitest .",
"scss": "sass styles/dcc.scss styles/dcc.css",
"scss-watch": "sass --watch styles/dcc.scss styles/dcc.css"
},
"type": "module",
"version": "0.50.0"
}