-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.05 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
{
"name": "pendulum",
"version": "1.0.0",
"description": "A pendulum simulation based on matter.js",
"main": "index.js",
"scripts": {
"start": "./node_modules/.bin/parcel index.html",
"build": "./node_modules/.bin/parcel build index.html --public-url .",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "npm run-script build && ./node_modules/.bin/gh-pages -d dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/has-delta/pendulum.git"
},
"keywords": [
"physics",
"physics-simulation",
"matter-js",
"javascript",
"typescript",
"has-delta",
"hana-academy-seoul",
"github-pages",
"web"
],
"author": "has-delta",
"license": "MIT",
"bugs": {
"url": "https://github.com/has-delta/pendulum/issues"
},
"homepage": "https://github.com/has-delta/pendulum#readme",
"dependencies": {
"matter-js": "^0.14.2"
},
"devDependencies": {
"@types/matter-js": "^0.10.2",
"gh-pages": "^2.0.1",
"parcel": "^1.12.3",
"typescript": "^3.4.5"
}
}