forked from iamralpht/gravitas.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 749 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 749 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
{
"name": "gravitas",
"version": "0.1.0",
"description": "Super fast physics simulations for JavaScript",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/iamralpht/gravitas.js.git"
},
"keywords": [
"physics",
"simulation",
"javascript"
],
"author": "Ralph Thomas <ralpht@gmail.com> (https://github.com/iamralpht)",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/iamralpht/gravitas.js/issues"
},
"homepage": "https://github.com/iamralpht/gravitas.js",
"scripts": {
"build": "webpack src/index.js dist/gravitas.js",
"build-min": "COMPRESS=1 webpack src/index.js dist/gravitas.min.js"
},
"devDependencies": {
"webpack": "^1.5.1"
}
}