-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.15 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.15 KB
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
{
"name": "data-manager",
"version": "0.9.2",
"description": "Advanced querying and processing for csv data",
"repository": "github:CSNW/data-manager",
"license": "MIT",
"homepage": "https://github.com/CSNW/data-manager",
"author": "Tim Hall <tim.hall@cornerstonenw.com>",
"keywords": [
"csv",
"query",
"process",
"data-manager",
"d3"
],
"main": "dist/data-manager.umd.js",
"module": "src/index.js",
"browser": "dist/data-manager.umd.min.js",
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"pretest": "npm run build",
"test": "jest",
"example": "serve .",
"benchmark": "node tests/benchmark"
},
"dependencies": {
"babel-plugin-macros": "^2",
"d3-fetch": "^1"
},
"devDependencies": {
"@babel/core": "^7",
"@babel/preset-env": "^7",
"babel-plugin-tester": "^6",
"benchmark": "^2",
"d3-dsv": "^1",
"file-url": "^2",
"jest": "^24",
"node-fetch": "^2",
"promise-polyfill": "^8",
"rollup": "^1",
"rollup-plugin-buble": "^0.19",
"rollup-plugin-filesize": "^6",
"rollup-plugin-terser": "^5",
"serve": "^11",
"whatwg-fetch": "^2"
}
}