forked from foundryvtt-dcc/dcc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.29 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
{
"author": "M. Elf",
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
},
"bugs": {
"url": "https://github.com/MathElf/foundry-dcc/issues"
},
"description": "Dungeon Crawl Classics RPG Support for Foundry VTT",
"devDependencies": {
"@babel/preset-env": "^7.23.2",
"babel-jest": "^27.3.1",
"jest": "^29.7.0",
"sass": "^1.69.3",
"standard": "^17.1.0",
"stylelint": "^15.10.3",
"stylelint-config-sass-guidelines": "^10.0.0"
},
"directories": {
"test": "module/tests"
},
"homepage": "https://github.com/MathElf/foundry-dcc#readme",
"jest": {
"setupFiles": [
"<rootDir>/module/__mocks__/setup.js",
"<rootDir>/module/__mocks__/foundry.js",
"<rootDir>/module/__mocks__/item.js"
],
"verbose": true
},
"keywords": [
"FoundryVTT",
"DCC",
"Dungeon Crawl Classics"
],
"license": "MIT",
"main": "module/dcc.js",
"name": "dcc",
"repository": {
"type": "git",
"url": "githttps://github.com/MathElf/foundry-dcc.git"
},
"scripts": {
"format": "standard --fix && stylelint \"**/*.scss\"",
"test": "jest",
"scss": "sass styles/dcc.scss styles/dcc.css"
},
"version": "0.0.5"
}