-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.43 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
{
"name": "curve-shortening-demo",
"version": "1.1.0",
"description": "An interactive demonstration of curve-shortening flow",
"main": "csf.js",
"dependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"bind-decorator": "^1.0.11",
"browser-sync": "^2.27.10",
"color-interpolate": "^1.0.5",
"core-js": "^3.5.0",
"lit-element": "^2.2.1",
"regenerator-runtime": "^0.13.3",
"rollup": "^1.27.13",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.1.3",
"rollup-plugin-typescript": "^1.0.1",
"tslib": "^1.10.0",
"typescript": "^3.7.3"
},
"devDependencies": {
"browser-sync": "^2.27.10",
"npm-run-all": "^4.1.3"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"build:dev": "rollup -c rollup.config.dev.js -w -m",
"browse": "node browse.js",
"start": "npm-run-all --parallel build:dev browse"
},
"repository": {
"type": "git",
"url": "git+https://github.com/acarapetis/curve-shortening-demo.git"
},
"keywords": [
"mathematics",
"geometry",
"simulation",
"visualization",
"curvature"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/acarapetis/curve-shortening-demo/issues"
},
"homepage": "https://github.com/acarapetis/curve-shortening-demo#readme"
}