-
Notifications
You must be signed in to change notification settings - Fork 377
/
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
{
"title": "AngularJS-nvD3",
"name": "angular-nvd3",
"version": "1.0.9",
"description": "An AngularJS directive for NVD3.js reusable charting library",
"homepage": "http://krispo.github.io/angular-nvd3",
"repository": {
"type": "git",
"url": "https://github.com/krispo/angular-nvd3.git"
},
"main": "index.js",
"keywords": [
"angular",
"nvd3",
"d3",
"directive",
"visualization",
"charts",
"svg"
],
"bugs": {
"url": "https://github.com/krispo/angular-nvd3/issues"
},
"license": "MIT",
"author": {
"name": "Konstantin Skipor"
},
"dependencies": {
"angular": "^1.x",
"d3": "^3.3",
"nvd3": "^1.7.1"
},
"devDependencies": {
"angular-mocks": "^1.x",
"grunt": "^0.4.4",
"grunt-cli": "^0.1.13",
"grunt-contrib-concat": "^0.4.0",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-uglify": "^0.4.0",
"grunt-contrib-watch": "^0.6.1",
"jasmine-core": "^2.4.1",
"karma": "~0.12",
"karma-chrome-launcher": "^0.2.2",
"karma-coverage": "^0.5.5",
"karma-jasmine": "^0.3.8"
},
"scripts": {
"test": "karma start test/karma.conf.js",
"test-single-run": "karma start test/karma.conf.js --single-run"
}
}