-
Notifications
You must be signed in to change notification settings - Fork 430
/
package.json
38 lines (38 loc) · 873 Bytes
/
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
{
"name": "sketch-js",
"version": "1.1.3",
"description": "Cross-Platform JavaScript Creative Coding Framework",
"main": "./js/sketch.js",
"directories": {
"example": "examples",
"test": "tests",
"lib": "js"
},
"scripts": {
"build": "uglifyjs js/sketch.js --comments /copy/i -cmo js/sketch.min.js",
"test": "echo \"visit ./tests/index.html in browser\""
},
"repository": {
"type": "git",
"url": "https://github.com/soulwire/sketch.js.git"
},
"author": {
"name": "Justin Windle",
"url": "https://github.com/soulwire"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/soulwire/sketch.js/issues"
},
"homepage": "https://github.com/soulwire/sketch.js",
"keywords": [
"sketch",
"canvas",
"webgl",
"2d",
"javascript"
],
"devDependencies": {
"uglify-js": "^2.7.4"
}
}