-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.27 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
{
"name": "KnitSkel",
"version": "1.0.0",
"description": "Knitting skeleton interface",
"main": "src/ui.js",
"directories": {
"example": "examples"
},
"dependencies": {
"browserify": "^16.5.0",
"canvas2svg": "github:gliffy/canvas2svg",
"concretejs": "^3.0.5",
"d3": "^5.11.0",
"force-graph": "^1.18.2",
"jszip": "^3.2.2",
"moment": "^2.24.0",
"png-js": "^0.1.1",
"simplenoise": "^1.0.1",
"tinyify": "^2.5.1",
"watchify": "^3.11.1"
},
"devDependencies": {},
"scripts": {
"build": "./node_modules/browserify/bin/cmd.js src/ui.js -p tinyify --no-flat > js/skeleton.js",
"watch": "./node_modules/watchify/bin/cmd.js src/ui.js --debug -o js/skeleton.js -v",
"test": "node ./tests/test_pipeline.js assembly 2>/dev/null && node ./tests/test_pipeline.js layout 2>/dev/null && node ./tests/test_pipeline.js dat 2>/dev/null && node ./tests/test_connectivity.js 2>/dev/null && echo '\\nAll tests passed!' || echo 'Some test failed'"
},
"repository": {
"type": "git",
"url": "https://github.com/xionluhnis/knitskel.git"
},
"keywords": [
"knitting"
],
"author": "Alexandre Kaspar",
"bugs": {
"url": "https://github.com/xionluhnis/knitskel/issues"
},
"homepage": "http://knitskel.csail.mit.edu"
}