-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 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
{
"name": "hypergraphs-plot",
"version": "1.0.0",
"description": "A js library to visualize hypergraphs.",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.confing.js",
"build:p": "webpack --config webpack.confing.js -p",
"test": "jest",
"test:coverage": "jest --coverage",
"test:coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/isislab-unisa/hypergraphs-plot.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/isislab-unisa/hypergraphs-plot/issues"
},
"homepage": "https://github.com/isislab-unisa/hypergraphs-plot#readme",
"dependencies": {
"babel-preset-es2015": "^6.24.1",
"d3": "^5.9.7",
"d3-scale-chromatic": "^1.3.3",
"fmin": "0.0.2",
"venn.js": "git+https://github.com/benfred/venn.js.git",
"webpack": "^4.35.3"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/node": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@babel/register": "^7.4.4",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-install": "2.1.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"coveralls": "^3.0.5",
"jest": "^24.8.0",
"uglifyjs-webpack-plugin": "^2.1.3",
"webpack-cli": "^3.3.5",
"webpack-merge": "^4.2.1"
},
"jest": {
"verbose": true,
"testMatch": [
"**/tests/classes/**.test.js"
],
"collectCoverage": true
}
}