forked from RealDeuce/torch
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
61 lines (60 loc) · 1.65 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
59
60
61
{
"name": "torch",
"version": "2.16.0",
"description": "Torch HUD Controls",
"main": "src/torch.js",
"scripts": {
"lint": "eslint .",
"copy-dist": "npm-run-all copy:dist*",
"copy:dist1": "npx cpy ./torch.css dist/",
"copy:dist3": "npx cpy ./lang/ dist/",
"copy:dist4": "npx cpy ./module.json dist/",
"copy:dist5": "npx cpy ./README.md dist/",
"build": "npm-run-all build:prod copy-dist",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"test": "npm-run-all lint build:dev test:units",
"test:units": "mocha",
"cover": "c8 --reporter html mocha",
"watch": "webpack --mode development --watch",
"serve": "webpack serve"
},
"keywords": [],
"contributors": [
{
"name": "Deuce",
"flags": {}
},
{
"name": "Lupestro",
"email": "[email protected]",
"flags": {}
}
],
"license": "SEE LICENSE IN README.md",
"dependencies": {
"ajv":"^8.13.0",
"json5":"^2.2.3",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/eslint-parser": "7.23.10",
"@babel/plugin-syntax-dynamic-import":"^7.8.3",
"babel-loader": "^9.1.3",
"babel-preset-es2015": "^6.24.1",
"c8":"^9.1.0",
"cpy-cli":"^5.0.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"npm-run-all":"^4.1.5",
"mini-css-extract-plugin":"^2.8.0",
"mocha":"^10.2.0",
"prettier": "^3.2.4",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}