-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
30 lines (30 loc) · 1.13 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
{
"name": "sketchpad14",
"version": "0.0.0",
"description": "Sketchpad14 based an implementation of van Overveld's relaxation algorithm",
"keywords": [
"sketchpad",
"relaxation",
"constraints",
"arithmetic constraints",
"geometric constraints"
],
"homepage": "tinlizzie.org/~hesam/cdg-c/sketchpad14/tool",
"bugs": "http://github.com/hesam/issues",
"main": "src/main.js",
"scripts": {
"clean": "rm -f dist/sketchpad14.js dist/sketchpad14.min.js",
"build-debug": "browserify src/main.js -d -s Sketchpad -o dist/sketchpad14.js",
"build-min": "browserify src/main.js -s Sketchpad -o dist/_sketchpad14.js && uglifyjs dist/_sketchpad14.js -o dist/sketchpad14.min.js && rm dist/_sketchpad14.js",
"build": "npm run build-debug && npm run build-min",
"watch": "watchify src/main.js -d -s Sketchpad -o dist/sketchpad14.js",
"prepublish": "npm run build"
},
"license": "MIT",
"author": "Alex Warth <[email protected]> (http://tinlizzie.org/~awarth), Hesam Samimi <[email protected]",
"devDependencies": {
"watchify": "^0.6.1",
"uglify-js": "^2.4.12",
"browserify": "^3.30.4"
}
}