-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.27 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
{
"name": "nearby-js",
"version": "1.0.0",
"description": "Find nearby 3D objects in constant time O(1).",
"main": "build/Nearby.js",
"module": "build/Nearby-module.js",
"es": "build/Nearby-es.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "rollup --config rollup.config.js --environment BUILD:production && minify ./build/Nearby.js -o ./build/Nearby.min.js",
"test": "npm run build && mocha test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oguzeroglu/Nearby.git"
},
"keywords": [
"game-development",
"3d",
"spatial-hashing"
],
"author": "Oguz Eroglu",
"license": "MIT",
"bugs": {
"url": "https://github.com/oguzeroglu/Nearby/issues"
},
"homepage": "https://github.com/oguzeroglu/Nearby#readme",
"dependencies": {},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-minify": "^0.5.1",
"babel-plugin-external-helpers": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-register": "^6.18.0",
"babelrc-rollup": "^3.0.0",
"eslint": "^4.1.1",
"expect.js": "^0.3.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"rollup": "^0.43.0",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-istanbul": "^1.1.0",
"rollup-watch": "^4.3.1"
}
}