-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 2.16 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "knitsketching",
"version": "0.0.1",
"description": "Knit sketching interface",
"main": "src/ui.js",
"directories": {
"example": "examples"
},
"dependencies": {
"3d-force-graph": "^1.55.9",
"@kninnug/constrainautor": "^1.0.0",
"@tyriar/fibonacci-heap": "^2.0.9",
"bezier-js": "^2.4.3",
"brfs": "^2.0.2",
"browserify": "^16.5.0",
"canvas2svg": "github:gliffy/canvas2svg",
"chroma-js": "^2.0.6",
"concretejs": "^3.0.5",
"d3": "^5.11.0",
"data-uri-to-buffer": "^3.0.1",
"delaunator": "^4.0.1",
"faucet": "0.0.1",
"force-graph": "^1.18.2",
"gulp": "^4.0.2",
"gulp-html-tag-include": "^1.0.1",
"jszip": "^3.2.2",
"moment": "^2.24.0",
"pairing-heap": "^1.0.0",
"png-js": "^0.1.1",
"require-globify": "^1.4.1",
"simplenoise": "^1.0.1",
"tape": "^5.0.1",
"three": "^0.110.0",
"tinyify": "^2.5.1",
"upng-js": "^2.1.0",
"watchify": "^3.11.1",
"webworkify": "^1.5.0"
},
"devDependencies": {},
"scripts": {
"build-html": "gulp -f html/build.js build",
"build-js": "browserify src/ui.js -t require-globify -t brfs > js/sketching.js",
"build": "npm run build-html && npm run build-js",
"build-tiny": "browserify src/ui.js -t require-globify -t brfs --plugin tinyify > js/sketching.js",
"watch-js": "watchify src/ui.js --debug -t require-globify -t brfs -o js/sketching.js -v",
"watch-html": "gulp -f html/build.js",
"watch": "(trap 'kill 0' 0; npm run watch-js & npm run watch-html)",
"link": "if [ ! -e knitsketching ]; then ln -s . knitsketching; echo 'Symlink created as knitsketching'; else echo 'Symlink exists already'; fi",
"test": "faucet && echo '\\nAll tests passed!' || echo 'Some test failed'",
"serve": "python -m SimpleHTTPServer 7000 || python3 -m http.server 7000 || python -m http.server 7000"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/xionluhnis/knitsketching.git"
},
"keywords": [
"knitting"
],
"author": "Alexandre Kaspar",
"bugs": {
"url": "https://github.com/xionluhnis/knitsketching/issues"
},
"homepage": "https://github.com/xionluhnis/knitsketching#README"
}