-
Notifications
You must be signed in to change notification settings - Fork 83
/
package.json
47 lines (47 loc) · 1.05 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
{
"name": "@observablehq/stdlib",
"version": "5.8.8",
"author": {
"name": "Observable, Inc.",
"url": "https://observablehq.com"
},
"license": "ISC",
"type": "module",
"main": "src/index.js",
"module": "src/index.js",
"jsdelivr": "dist/stdlib.js",
"unpkg": "dist/stdlib.js",
"exports": {
"umd": "./dist/stdlib.js",
"default": "./src/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/observablehq/stdlib.git"
},
"files": [
"dist/**/*.js",
"src/**/*.js"
],
"engines": {
"node": ">=14.5.0"
},
"scripts": {
"test": "mocha 'test/**/*-test.js' && eslint src test",
"prepublishOnly": "rm -rf dist && rollup -c",
"postpublish": "git push && git push --tags"
},
"dependencies": {
"d3-array": "^3.2.0",
"d3-dsv": "^3.0.1",
"d3-require": "^1.3.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"eslint": "^8.27.0",
"exceljs": "^4.3.0",
"mocha": "^10.1.0",
"rollup": "^3.2.5",
"rollup-plugin-terser": "^7.0.2"
}
}