-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
65 lines (65 loc) · 1.86 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
{
"name": "ilanguage-cloud",
"version": "4.0.0-rc1",
"description": "Generate interactive wordclouds for any language, with automatic stop word detection and ability to export as svg or png.",
"keywords": [
"ilanguage",
"tag cloud",
"cloud",
"word cloud",
"svg"
],
"homepage": "https://github.com/iLanguage/iLanguageCloud",
"bugs": "https://github.com/iLanguage/iLanguageCloud/issues",
"author": {
"name": "iLanguageCloud Contributors",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/iLanguage/iLanguageCloud"
},
"main": "index.js",
"license": "Apache-2.0",
"dependencies": {
"d3": "^3.5.6",
"d3-cloud": "https://github.com/iLanguage/d3-cloud.git",
"fielddb": "https://github.com/cesine/FieldDB.git",
"ilanguage": "https://github.com/iLanguage/iLanguage.git",
"q": "^1.5.1"
},
"optionalDevDependencies": {
"canvas": "^1.6.7",
"canvas-browserify": "^1.1.3",
"jsdom": "^11.3.0"
},
"devDependencies": {
"browserify": "^14.5.0",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-append-prepend": "^1.0.4",
"gulp-bump": "^2.8.0",
"gulp-istanbul": "^1.1.2",
"gulp-jasmine": "^2.4.2",
"gulp-jscs": "^4.0.0",
"gulp-jshint": "^2.0.4",
"gulp-load-plugins": "^1.5.0",
"gulp-plumber": "^1.1.0",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^3.0.0",
"gulp-util": "^3.0.8",
"jasmine-node": "^2.0.0",
"jshint": "^2.9.5",
"jshint-stylish": "^2.2.1",
"through2": "^2.0.3"
},
"scripts": {
"gulp": "gulp",
"lint": "gulp jshint",
"test": "gulp test",
"test:browser": "cd test && bower install && open SpecRunner.html",
"cover": "gulp istanbul",
"build:browserify": "browserify --standalone ILanguageCloud src/app.js -o dist/ilanguage-cloud.js",
"build": "gulp browserify"
}
}