forked from eptify/angular-vega
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
51 lines (51 loc) · 1.21 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
{
"name": "ng-vega",
"version": "1.4.0",
"description": "Angular directive for rendering vega specs",
"main": "dist/ng-vega.min.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "grunt build",
"version": "npm run build && git add -A dist",
"postversion": "git push ; git push --tags; pkgfiles",
"prepublish": "pkgfiles"
},
"repository": {
"type": "git",
"url": "https://github.com/kristw/ng-vega.git"
},
"keywords": [
"d3",
"chart",
"angular",
"angularjs",
"vega",
"ng-vega",
"angular-vega"
],
"authors": [
"Krist Wongsuphasawat <krist.wongz@gmail.com>",
"eptify"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kristw/ng-vega/issues"
},
"homepage": "https://github.com/kristw/ng-vega",
"dependencies": {
"d3": "~3.5.5",
"vega": "~2.4.2",
"angular": "~1.3.15"
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-cli": "~0.1.13",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-copy": "~0.8.0",
"grunt-contrib-uglify": "~0.9.1",
"grunt-gh-pages": "~0.10.0",
"load-grunt-config": "~0.17.1",
"time-grunt": "~1.2.1",
"pkgfiles": "^2.3.0"
}
}