-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.84 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": "blasterts",
"version": "1.0.0",
"description": "2-Bit Blaster in TypeScript",
"main": "main.ts",
"scripts": {
"build": "npx webpack --config webpack.config.development.js",
"prod": "npx webpack --config webpack.config.production.js",
"test": "npx mocha --require ts-node/register --reporter spec --paths test/*.spec.[jt]s test/**/*.spec.[jt]s",
"lint": "tslint src/*.ts src/**/*.ts test/*.ts test/**/*.ts",
"coverage": "nyc --reporter=html --reporter=text-summary npm run test",
"site": "cd host; node app.js; cd ..",
"postinstall": "(cd deployment && npm ci); (cd highScores && npm ci);"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pg94au/BlasterTS.git"
},
"author": "Paul Grebenc",
"license": "ISC",
"bugs": {
"url": "https://github.com/pg94au/BlasterTS/issues"
},
"homepage": "https://github.com/pg94au/BlasterTS#readme",
"devDependencies": {
"@types/b-spline": "^2.0.0",
"@types/chai": "^4.3.0",
"@types/debug": "^4.1.7",
"@types/events": "^3.0.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.17",
"@types/superagent": "^4.1.15",
"@types/underscore": "^1.11.4",
"@types/uuid": "^8.3.4",
"chai": "^4.3.6",
"copy-webpack-plugin": "^10.2.4",
"mocha": "^9.2.2",
"node-window-polyfill": "^1.0.2",
"nyc": "^15.1.0",
"ts-loader": "^9.2.6",
"ts-mockito": "^2.6.1",
"ts-node": "^10.5.0",
"tsconfig-paths": "^3.12.0",
"tslint": "^6.1.3",
"typescript": "^4.5.5",
"webpack": "^5.97.1",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"b-spline": "^2.0.2",
"debug": "^4.3.3",
"events": "^3.3.0",
"pixi.js": "^6.2.2",
"resource-loader": "^4.0.0-rc4",
"superagent": "^7.1.1",
"underscore": "^1.13.2",
"uniq": "^1.0.1",
"util": "^0.12.4",
"uuid": "^8.3.2"
}
}