-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 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
56
57
58
{
"name": "navmesh-generator",
"version": "1.0.3",
"license": "MIT",
"description": "A JS library for generating navigation meshes from obstacles",
"main": "dist/navmeshgenerator.js",
"types": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
},
"files": [
"src",
"dist"
],
"scripts": {
"test": "karma start --browsers ChromeHeadless --single-run",
"test:watch": "karma start --browsers ChromeHeadless",
"test:firefox": "karma start --browsers Firefox --single-run",
"test:firefox:watch": "karma start --browsers Firefox",
"tsc": "tsc",
"build": "rollup -c",
"build:dev": "rollup -c -w",
"prepublishOnly": "npm run build",
"format": "prettier --write \"src/**/*.ts\"",
"check-format": "prettier --list-different \"src/**/*.ts\""
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.0",
"@types/expect.js": "^0.3.29",
"@types/mocha": "^5.2.7",
"expect.js": "^0.3.1",
"karma": "^6.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-firefox-launcher": "^2.0.0",
"karma-mocha": "^1.3.0",
"karma-typescript": "latest",
"mocha": "^6.2.0",
"prettier": "2.1.2",
"rollup": "^2.66.1",
"rollup-plugin-dts": "^4.1.0",
"ts-loader": "^9.2.3",
"typescript": "latest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/d8h/navmeshgenerator.git"
},
"keywords": [
"navigation mesh",
"path finding"
],
"author": "Davy Helard",
"contributors": [],
"bugs": {
"url": "https://github.com/d8h/navmeshgenerator/issues"
},
"homepage": "https://github.com/d8h/navmeshgenerator"
}