-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.49 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.49 KB
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
{
"name": "waterball",
"description": "A Canvas Graph library",
"version": "1.0.4",
"scripts": {
"test": "mocha",
"min": "gulp min",
"package": "gulp"
},
"keywords": [
"canvas",
"waterball",
"wave"
],
"author": {
"name": "Zed Wong",
"email": "woox.wzd@gmail.com"
},
"copyright": "Copyright ZedWong, Inc.",
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"issues": "https://github.com/zedwang/waterball/issues",
"repository": {
"type": "git",
"url": "https://github.com/zedwang/waterball"
},
"main": "dist/water-ball.js",
"dependencies": {},
"devDependencies": {
"del": "^3.0.0",
"gulp": "^3.9.0",
"gulp-cache": "^0.4.2",
"gulp-eslint": "^2.0.0",
"gulp-header": "^1.7.1",
"gulp-if": "^2.0.0",
"gulp-load-plugins": "^1.5.0",
"gulp-rename": "^1.2.2",
"gulp-size": "^2.1.0",
"gulp-sourcemaps": "^1.5.0",
"gulp-uglify": "^1.1.0",
"gulp-umd": "^0.2.1",
"gulp-wrap": "^0.13.0",
"jshint": "^2.5.10",
"mocha": "^3.2.0"
},
"eslintConfig": {
"env": {
"es6": true,
"node": true,
"browser": true
},
"rules": {
"quotes": [
2,
"single"
]
}
}
}