-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.42 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
{
"name": "rw-build",
"version": "2.0.0",
"description": "A CLI for Rusted Warfare modding build.",
"main": "dist/index.js",
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"watch": "tsc --watch",
"test": "mocha --require ts-node/register test/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zerodegress/rw-build.git"
},
"dependencies": {
"@commander-js/extra-typings": "^10.0.2",
"clone": "^2.1.2",
"commander": "^10.0.0",
"fs-extra": "^11.1.0",
"merge": "^2.1.1",
"minimatch": "^6.1.6",
"mkdirp": "^2.1.3",
"normalize-path": "^3.0.0",
"rw-build-util": "^1.1.1",
"toml": "^3.0.0",
"vm2": "^3.9.13",
"walkdir": "^0.4.1",
"webpack-merge": "^5.8.0"
},
"keywords": [],
"author": "",
"license": "GPL",
"bugs": {
"url": "https://github.com/zerodegress/rw-build/issues"
},
"homepage": "https://github.com/zerodegress/rw-build#readme",
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/clone": "^2.1.1",
"@types/fs-extra": "^11.0.1",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@types/normalize-path": "^3.0.0",
"@typescript-eslint/parser": "^5.49.0",
"chai": "^4.3.7",
"eslint": "^8.33.0",
"mocha": "^10.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"type": "commonjs",
"bin": {
"rwbuild": "bin/rwbuild.js"
}
}