forked from jakubfiala/atrament
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 939 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
{
"name": "atrament",
"version": "0.2.0",
"description": "Tiny JS library for beautiful drawing and handwriting on the HTML Canvas",
"main": "lib/atrament.js",
"scripts": {
"prepublish": "npm run node-compile",
"node-compile": "babel src --presets es2015 -d lib/",
"build": "webpack --config webpack.config.js",
"test": "jasmine"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakubfiala/atrament.js.git"
},
"keywords": [
"canvas",
"drawing",
"handwriting",
"graphics"
],
"author": "Jakub Fiala",
"license": "SEE LICENSE IN LICENSE.md",
"bugs": {
"url": "https://github.com/jakubfiala/atrament.js/issues"
},
"homepage": "https://github.com/jakubfiala/atrament.js#readme",
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"uglify-js": "^2.6.2",
"webpack": "^1.13.0"
}
}