forked from furstenheim/automatic-scatter-labelling
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
62 lines (62 loc) · 1.72 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
{
"name": "automatic-scatter-labelling",
"version": "1.0.0",
"description": "Place labels in a scatter plot without overlapping. Implements the NOLOOKAHEAD described in https://www.think-cell.com/en/career/talks/pdf/think-cell_article_aaai2006.pdf",
"main": "dist/automatic-labelling.js",
"scripts": {
"gulp": "gulp",
"build": "gulp build",
"test": "karma start karma.conf.js --single-run",
"test-watch": "karma start karma.conf.js"
},
"reposistory": {
"type": "git",
"url": "https://github.com/furstenheim/automatic-scatter-labelling"
},
"standard": {
"ignore": [
"/coverage/",
"/dist"
],
"globals": [
"describe",
"it"
]
},
"author": "Gabriel Fürstenheim <[email protected]>",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.21.0",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-meaningful-logs": "^1.0.2",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babelify": "^7.3.0",
"browser-sync": "^2.16.0",
"browserify": "^14.3.0",
"chai": "^3.5.0",
"exposify": "^0.5.0",
"gulp": "3.x.x",
"gulp-notify": "^3.0.0",
"gulp-spawn-mocha": "^3.1.0",
"istanbul": "^0.4.5",
"karma": "^1.3.0",
"karma-browserify": "^5.1.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"lodash": "^4.16.2",
"mocha": "^3.0.2",
"sinon": "2.0.0-pre.4",
"standard": "^10.0.2",
"through2": "^2.0.3",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"vinyl-transform": "^1.0.0",
"watchify": "^3.9.0",
"webworkify": "^1.4.0"
},
"dependencies": {
"iterative-greedy": "1.0.0"
}
}