-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 936 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
39
40
41
42
43
44
{
"name": "halftone",
"version": "0.1.1",
"description": "Create halftone images.",
"contributors": [
"Benoît Guigal <[email protected]>"
],
"bugs": {
"url": "https://github.com/Postcard/halftone/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/Postcard/halftone.git"
},
"keywords": [
"halftone",
"imageMagick",
"paperjs"
],
"main": "dist/index.js",
"directories": {
"lib": "./dist"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"check": "flow check",
"build": "rm -rf dist/* && babel src --ignore __tests__ --out-dir dist"
},
"dependencies": {
"paper": "^0.9.25",
"gm": "^1.21.1"
},
"devDependencies": {
"babel": "5.8.21",
"babel-core": "5.8.22",
"babel-eslint": "4.0.10",
"babel-runtime": "5.8.20",
"flow-bin": "^0.20.1"
}
}