-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.33 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
{
"name": "boids-ts",
"version": "0.0.0",
"description": "My tstackgl module",
"license": "MIT",
"repository": "nkint/boids-ts",
"author": {
"name": "alberto",
"email": "[email protected]",
"url": ""
},
"keywords": [
"agents",
"boids",
"canvas",
"flock",
"typescript",
"simulation"
],
"scripts": {
"clean": "rm -rf dist; rm -rf demo",
"build-dist": "microbundle",
"build-demo": "parcel build src/demo/index.html --out-dir demo --public-url ./",
"build": "npm run clean; npm run build-dist; npm run build-demo",
"deploy": "git subtree push --prefix demo origin gh-pages",
"start": "parcel src/demo/index.html",
"test": "echo \"Error: no test specified\" && exit 1"
},
"source": "src/index.ts",
"main": "dist/boids.js",
"umd:main": "dist/boids.umd.js",
"module": "dist/boids.m.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/"
],
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.3",
"gl-vec2": "^1.3.0",
"microbundle": "^0.6.0",
"random-seed": "^0.3.0"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/express": "^4.16.0",
"@types/node": "^10.11.4",
"@types/random-seed": "^0.3.3",
"canvas-fit-margin-ts": "^1.0.8",
"parcel": "^1.10.2",
"typescript": "^3.0.1"
}
}