forked from jtblin/angular-chart.js
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 2.13 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
{
"name": "angular-chart.js",
"version": "1.1.1",
"description": "An angular.js wrapper for Chart.js",
"homepage": "http://jtblin.github.io/angular-chart.js/",
"main": "dist/angular-chart.js",
"directories": {
"example": "examples"
},
"scripts": {
"codeclimate": "./node_modules/codeclimate-test-reporter/bin/codeclimate.js < coverage/lcov.info",
"docker": "npm run docker-build && npm run docker-test",
"docker-build": "docker build -t angular-chart.js .",
"docker-test": "docker run --rm -i -v $(pwd)/coverage/:/src/coverage/ -v $(pwd)/test/:/src/test/ -v $(pwd)/angular-chart.js:/src/angular-chart.js angular-chart.js",
"test": "gulp check"
},
"author": "Jerome Touffe-Blin <jtblin@gmail.com>",
"repository": {
"type": "git",
"url": "git://github.com/jtblin/angular-chart.js.git"
},
"license": "BSD-2-Clause",
"devDependencies": {
"Rainbow": "git+https://github.com/ccampbell/rainbow.git",
"angular-bootstrap": "^0.12.2",
"angular-mocks": "^1.5.7",
"bootstrap": "^3.3.7",
"chai": "^3.4.1",
"chai-string": "^1.2.0",
"codeclimate-test-reporter": "^0.3.1",
"cp": "^0.2.0",
"font-awesome": "^4.6.3",
"gm": "^1.22.0",
"gulp": "^3.9.0",
"gulp-bump": "^2.1.0",
"gulp-git": "^1.7.1",
"gulp-gzip": "^1.2.0",
"gulp-header": "^1.8.3",
"gulp-istanbul": "^1.0.0",
"gulp-istanbul-report": "^0.0.1",
"gulp-jscs": "^3.0.2",
"gulp-jshint": "^2.0.0",
"gulp-mocha-phantomjs": "^0.11.0",
"gulp-rename": "^1.2.0",
"gulp-rimraf": "^0.2.0",
"gulp-sequence": "^0.4.1",
"gulp-shell": "^0.5.1",
"gulp-sourcemaps": "^1.0.0",
"gulp-spawn-mocha": "^2.0.1",
"gulp-tar": "^1.9.0",
"gulp-uglify": "^1.5.3",
"imgur-node-api": "^0.1.0",
"jshint": "^2.9.1",
"jshint-stylish": "^2.0.1",
"mkdirp": "^0.5.0",
"mocha": "^2.1.0",
"mocha-phantomjs-istanbul": "^0.0.2",
"requirejs": "^2.2.0",
"sinon": "^1.12.2",
"sinon-chai": "^2.7.0",
"testatic": "^0.1.0",
"tmp-sync": "^1.1.0",
"webpack": "^1.13.1",
"webshot": "^0.18.0"
},
"dependencies": {
"angular": "1.x",
"chart.js": "2.3.x"
}
}