-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.06 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
{
"name": "the-field",
"version": "1.0.0",
"description": "Basic shadow-casting field-of-view algorithm",
"keywords": [
"fov",
"roguelike",
"shadowcasting",
"vision"
],
"main": "build/index.js",
"typings": "build/index.d.ts",
"repository": "https://github.com/sbj42/the-field.git",
"author": "James Clark <[email protected]>",
"license": "MIT",
"scripts": {
"test": "jest",
"lint": "tslint --project tsconfig.json",
"benchmark": "ts-node benchmark/bench-field-of-view.ts",
"build": "rimraf bin build && webpack && webpack -p && tsc && rimraf bin/build"
},
"devDependencies": {
"@types/benchmark": "^1.0.30",
"@types/node": "^10.5.2",
"@types/seedrandom": "^2.4.27",
"benchmark": "^2.1.4",
"coveralls": "^3.0.2",
"jest": "^23.4.1",
"jest-junit": "^5.1.0",
"rimraf": "^2.6.1",
"seedrandom": "^2.4.3",
"ts-jest": "^23.0.1",
"ts-loader": "^4.4.2",
"ts-node": "^7.0.0",
"tslint": "^5.10.0",
"typescript": "^2.9.2",
"webpack": "^4.16.0",
"webpack-cli": "^3.0.8"
}
}