-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
61 lines (61 loc) · 1.83 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
{
"name": "angular-d3-word-cloud",
"description": "Running example base on express server",
"version": "0.5.3",
"license": "MIT",
"homepage": "https://weihanchen.github.io/angular-d3-word-cloud/",
"author": {
"name": "weihanchen",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/weihanchen/angular-d3-word-cloud"
},
"bugs": {
"url": "https://github.com/weihanchen/angular-d3-word-cloud/issues"
},
"keywords": [
"angular",
"d3",
"word-cloud",
"cloud"
],
"main": "dist/angular-word-cloud.js",
"dependencies": {
"angular": "^1.3.0",
"d3": "~4.6.0",
"d3-cloud": "~1.2.4"
},
"devDependencies": {
"angular-mocks": "~1.6.2",
"angular-bootstrap-colorpicker": "~3.0.25",
"eslint": "~3.17.1",
"eslint-plugin-angular": "~1.6.2",
"eslint-config-angular": "~0.5.0",
"express": "~4.14.0",
"font-awesome": "~4.7.0",
"gulp": "~3.9.1",
"gulp-banner": "~0.1.3",
"gulp-clean": "~0.3.2",
"gulp-concat": "~2.6.0",
"gulp-ng-annotate": "~1.1.0",
"gulp-uglify": "~1.5.3",
"jasmine-core": "~2.4.1",
"karma": "~1.2.0",
"karma-chrome-launcher": "~2.0.0",
"karma-coverage": "~1.1.1",
"karma-coveralls": "~1.1.2",
"karma-phantomjs-launcher": "~1.0.2",
"karma-jasmine": "~1.0.2",
"karma-mocha-reporter": "~2.0.0",
"phantomjs-prebuilt": "~2.1.14"
},
"scripts": {
"esLint:init": "./node_modules/.bin/eslint --init",
"esLint:start": "./node_modules/.bin/eslint gulpfile.js karma.config.js src/*.js test/*.js docs/js/controllers/*.js",
"test": "./node_modules/.bin/karma start",
"release": "npm run esLint:start && karma start && gulp",
"dev": "gulp && node run.js"
}
}