forked from rough-stuff/rough
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.01 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": "roughjs",
"version": "0.1.0",
"description": "Create graphics using HTML Canvas or SVG with a hand-drawn, sketchy, appearance.",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emeeks/rough.git"
},
"keywords": [
"canvas",
"svg",
"graphics",
"sketchy",
"hand drawn",
"hand-drawn"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/emeeks/rough/issues"
},
"homepage": "https://github.com/emeeks/rough",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-minify": "^0.3.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1"
},
"dependencies": {
"babel-runtime": "^6.26.0"
}
}