-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 914 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 914 Bytes
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
{
"name": "cartesian-system-lite",
"version": "0.6.1",
"description": "A coordinate grid system for physics/game engines",
"main": "./src/CartesianSystemLite.js",
"scripts": {
"test": "node ./src/CartesianSystemLite.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prolightHub/CartesianSystemLite.git"
},
"keywords": [
"nodejs",
"library",
"cartesian-tree",
"grid-system",
"javascript"
],
"author": "prolightHub",
"license": "ISC",
"bugs": {
"url": "https://github.com/prolightHub/CartesianSystemLite/issues"
},
"homepage": "https://github.com/prolightHub/CartesianSystemLite#readme",
"autoupdate": {
"source": "git",
"target": "git://github.com/prolightHub/CartesianSystemLite.git",
"fileMap": [
{
"basePath": "dist",
"files": [
"CartesianSystemLite*"
]
}
]
}
}