forked from nicgirault/circosJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.61 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
{
"name": "circosJS",
"version": "2.0.0",
"description": "A d3js library to build circos graphs",
"main": "app.js",
"scripts": {
"test": "NODE_ENV=test mocha --compilers js:babel-register --reporter spec src/**/*.test.js",
"test:tdd": "NODE_ENV=test mocha --compilers js:babel-register --reporter nyan --watch src/**/*.test.js",
"coveralls": "CIRCOSJS_COVERAGE=1 mocha test --reporter mocha-lcov-reporter src/**/*.test.js | ./node_modules/coveralls/bin/coveralls.js",
"start": "webpack --watch",
"build": "NODE_ENV=prod webpack --optimize-minimize --optimize-dedupe"
},
"repository": {
"type": "git",
"url": "https://github.com/nicgirault/circosJS.git"
},
"author": "Nicolas Girault",
"license": "ISC",
"bugs": {
"url": "https://github.com/nicgirault/circosJS/issues"
},
"homepage": "https://github.com/nicgirault/circosJS",
"devDependencies": {
"babel": "^6.5.2",
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-es2015-modules-umd": "^6.18.0",
"babel-polyfill": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"chai": "~1.10.0",
"coffee-coverage": "~0.4.5",
"coffee-script": "~1.8.0",
"coveralls": "^2.11.16",
"css-loader": "^0.26.1",
"eslint": "^3.14.1",
"eslint-config-google": "^0.7.1",
"eslint-plugin-import": "^2.2.0",
"mocha": "~2.5.3",
"mocha-lcov-reporter": "^1.2.0",
"sinon": "~1.17.4",
"style-loader": "^0.13.1",
"webpack": "^1.14.0"
},
"dependencies": {
"d3": "^4.4.4",
"d3-scale-chromatic": "^1.1.0",
"lodash": "^4.17.3"
}
}