-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.09 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
{
"name": "@datasupply/datasupply",
"version": "0.0.1",
"description": "Data Supply is an opinionated data processing, provision and presentation library of components for Javascript",
"main": "src/index.js",
"type": "module",
"directories": {
"doc": "docs"
},
"dependencies": {
"d3-dsv": "^2.0.0",
"yaml": "^1.10.0"
},
"devDependencies": {
"eslint": "^7.19.0",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1"
},
"scripts": {
"supply": "node ./src/supply-cmd.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --passWithNoTests",
"lint": "eslint"
},
"bin": {
"supply": "./src/supply-cmd.js"
},
"jest": {
"transform": {}
},
"repository": {
"type": "git",
"url": "git+https://github.com/signal-noise/datasupply.git"
},
"keywords": [
"data",
"datavis",
"csv",
"parser",
"json"
],
"author": "signal-noise",
"license": "MIT",
"bugs": {
"url": "https://github.com/signal-noise/datasupply/issues"
},
"homepage": "https://github.com/signal-noise/datasupply#readme"
}