-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
41 lines (41 loc) · 1.17 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
{
"private": true,
"name": "combat-numbers",
"version": "1.2.1",
"description": "A FoundryVTT module showcasing bouncing combat numbers on tokens, similar to old-school JRPGs.",
"scripts": {
"build": "npx webpack --config webpack.config.js",
"lint": "npx eslint --fix ./src && npx eslint --fix ./tests",
"test": "jest --silent --verbose ./tests",
"watch": "npx webpack --config webpack.config.js --watch"
},
"author": "",
"license": "",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"archiver": "^5.0.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.3.1",
"babel-loader": "^8.2.1",
"chalk": "^4.1.0",
"copy-webpack-plugin": "^6.3.0",
"eslint": "^7.13.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-jest": "^24.1.3",
"fs-extra": "^9.0.1",
"jest": "^27.3.1",
"jest-when": "^3.0.1",
"json-stringify-pretty-compact": "^2.0.0",
"sass": "^1.29.0",
"typescript": "^4.0.5",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0",
"yargs": "^16.1.0"
},
"dependencies": {
"lodash": "^4.17.20",
"pixi-ease": "^3.0.6"
}
}