-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.51 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
62
63
64
65
66
67
{
"name": "@wfcd/mod-generator",
"public": "true",
"version": "0.0.1",
"description": "",
"author": "SlayerOrnstein",
"type": "module",
"scripts": {
"build": "tsc",
"lint": "eslint src/",
"lint:fix": "eslint src/ tests/ --fix",
"test": "c8 mocha tests/*.spec.ts",
"prepare": "husky && npx install-peerdeps -S @wfcd/eslint-config@latest"
},
"license": "MIT",
"dependencies": {
"@napi-rs/canvas": "^0.1.66",
"warframe-items": "^1.1266.20"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@commitlint/types": "^19.5.0",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.13.1",
"@wfcd/eslint-config": "^1.6.3",
"c8": "^10.1.3",
"chai": "^5.1.2",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"husky": "^9.1.7",
"install-peerdeps": "^3.0.3",
"lint-staged": "^15.4.3",
"mocha": "^11.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=18.0.0"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-transform-class-properties",
"@babel/plugin-transform-private-methods"
]
},
"prettier": "@wfcd/eslint-config/prettier",
"mocha": {
"loader": "ts-node/esm",
"timeout": 15000,
"exit": true
},
"c8": {
"reporter": [
"lcov",
"text"
],
"skip-full": true
},
"peerDependencies": {
"warframe-items": "^1.1266.20"
}
}