-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
71 lines (71 loc) · 1.71 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "watercolor-canvas",
"version": "1.1.1",
"description": "watercolor effects on html canvas",
"main": "watercolor-canvas.js",
"module": "lib/index.js",
"author": {
"name": "Taylor Baldwin",
"email": "[email protected]",
"url": "https://tbaldw.in/"
},
"license": "MIT",
"scripts": {
"bundle": "rollup --config=rollup.config.js",
"build": "npm run transpile && npm run bundle",
"transpile": "babel src --out-dir=lib",
"start": "budo demo.js:bundle.js --open --live",
"build-example": "mkdir -p docs && browserify demo.js > docs/bundle.js && cp index.html docs/",
"lint": "standard",
"prepublish": "npm run build && npm run lint"
},
"devDependencies": {
"alea": "^0.0.9",
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babelify": "^7.3.0",
"browserify": "^14.3.0",
"budo": "^10.0.3",
"dat-gui": "^0.5.0",
"rollup": "^0.41.6",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"sketch-js": "^1.1.3",
"standard": "^10.0.2"
},
"dependencies": {
"gl-vec2": "^1.0.0",
"lerp": "^1.0.3",
"new-array": "^1.0.0"
},
"standard": {
"ignore": [
"watercolor-canvas.js",
"docs",
"lib"
]
},
"files": [
"watercolor-canvas.js",
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rolyatmax/watercolor-canvas.git"
},
"keywords": [
"canvas",
"watercolor",
"color",
"blending"
],
"bugs": {
"url": "https://github.com/rolyatmax/watercolor-canvas/issues"
},
"homepage": "https://github.com/rolyatmax/watercolor-canvas#readme",
"browserify": {
"transform": [
"babelify"
]
}
}