-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.91 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": "origraph",
"version": "0.2.8",
"description": "A library for flexible graph reshaping",
"main": "dist/origraph.cjs.js",
"module": "dist/origraph.esm.js",
"jsnext:main": "dist/origraph.esm.js",
"browser": "dist/origraph.umd.js",
"scripts": {
"build": "rollup -c --environment TARGET:all",
"watch": "rollup -c -w",
"watchcjs": "rollup -c -w --environment TARGET:cjs",
"watchumd": "rollup -c -w --environment TARGET:umd",
"watchesm": "rollup -c -w --environment TARGET:esm",
"test": "jest --runInBand",
"pretest": "rollup -c --environment TARGET:cjs",
"debug": "rollup -c --environment TARGET:cjs,SOURCEMAP:false && node --inspect-brk node_modules/.bin/jest --runInBand -t --detectOpenHandles",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/origraph/origraph.js.git"
},
"author": "Alex Bigelow",
"license": "MIT",
"bugs": {
"url": "https://github.com/origraph/origraph.js/issues"
},
"homepage": "https://github.com/origraph/origraph.js#readme",
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-async-generator-functions": "^7.2.0",
"@babel/preset-env": "^7.3.4",
"babel-core": "^7.0.0-0",
"babel-jest": "^24.3.1",
"coveralls": "^3.0.3",
"jest": "^24.3.1",
"rollup": "^1.5.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-istanbul": "^2.0.1",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^4.0.1",
"sha1": "^1.1.1"
},
"dependencies": {
"d3": "^5.9.1",
"datalib": "^1.9.2",
"filereader": "^0.10.3",
"jszip": "^3.2.0",
"mime-types": "^2.1.22"
},
"peerDependencies": {
"d3": "^5.4.0"
}
}