-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.63 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
{
"name": "rl-loadout-lib",
"version": "0.6.0",
"description": "Load Rocket League assets into three.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"build-web": "rollup -c rollup.config.js",
"clean": "rimraf dist",
"test": "mocha -r ts-node/register 'test/cli/**/*.spec.ts'",
"test:junitReporter": "mocha -r ts-node/register 'test/cli/**/*.spec.ts' --reporter mocha-junit-reporter --reporter-options mochaFile=./test-results/mocha/results.xml",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"docgen": "typedoc --mode file --excludePrivate --excludeProtected --excludeNotExported --out doc/ src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Longi94/rl-loadout-lib.git"
},
"author": "Long Tran",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Longi94/rl-loadout-lib/issues"
},
"homepage": "https://github.com/Longi94/rl-loadout-lib#readme",
"keywords": [
"rocket",
"league",
"three"
],
"peerDependencies": {
"three": "^0.110.0"
},
"devDependencies": {
"@types/chai": "^4.2.10",
"@types/mocha": "^7.0.2",
"atob": "^2.1.2",
"btoa": "^1.2.1",
"chai": "^4.2.0",
"mocha": "^7.1.0",
"mocha-junit-reporter": "^1.23.3",
"rimraf": "^3.0.2",
"rollup": "^2.0.6",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.26.0",
"three": "^0.110.0",
"ts-node": "^8.6.2",
"tslint": "^6.1.0",
"typedoc": "^0.16.11",
"typescript": "~3.7.2"
}
}