forked from tennisonchan/fabric-brush
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.3 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
41
42
43
44
45
46
47
48
49
{
"name": "fabric-brush",
"version": "0.0.1",
"description": "A variety of brushes based on an awesome HTML5 canvas framework fabric.js",
"scripts": {
"clean": "rimraf dist/*",
"lint": "jshint */**.js",
"prebuild": "npm run clean -s && mkdir -p dist",
"prebuild:scripts": "npm run lint",
"build:scripts": "browserify ./src/**/*.js --outfile dist/fabric-brush.js",
"build:scripts:min": "browserify ./src/**/*.js -d -p [minifyify --no-map] --outfile dist/fabric-brush.min.js",
"build": "npm run build:scripts && npm run build:scripts:min"
},
"keywords": [
"fabric",
"fabric.js",
"brush",
"brushes",
"canvas",
"HTML5",
"drawing",
"spray",
"stroke",
"crayon",
"marker",
"ink",
"drip",
"graffiti"
],
"engines": {
"node": ">= 0.4.4"
},
"homepage": "https://tennisonchan.github.com/fabric-brush",
"author": "Tennison Chan <[email protected]> (https://github.com/tennisonchan)",
"repository": {
"type": "git",
"url": "git://github.com/tennisonchan/fabric-brush.git"
},
"bugs": {
"url": "https://github.com/tennisonchan/fabric-brush/issues"
},
"license": "MIT",
"devDependencies": {
"browserify": "~13.0.0",
"jshint": "~2.9.1",
"minifyify": "^7.3.1",
"rimraf": "~2.5.2"
}
}