forked from observablehq/stdlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 929 Bytes
/
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
{
"name": "@observablehq/notebook-stdlib",
"version": "1.2.1",
"license": "ISC",
"main": "dist/notebook-stdlib.umd.js",
"module": "dist/notebook-stdlib.js",
"author": {
"name": "Observable, Inc.",
"url": "https://observablehq.com"
},
"repository": {
"type": "git",
"url": "https://github.com/observablehq/notebook-stdlib.git"
},
"scripts": {
"test": "tape -r esm 'test/**/*-test.js'",
"precommit": "eslint . && yarn test",
"prepare": "rollup -c",
"postpublish": "git push && git push --tags"
},
"esm": {
"mode": "all",
"cjs": true
},
"dependencies": {
"d3-require": "^1.1.0",
"esm": "^3.0.5"
},
"devDependencies": {
"eslint": "^5.3.0",
"husky": "^0.14.3",
"jsdom": "^11.6.2",
"rollup": "^0.64.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-terser": "^1.0.1",
"tape": "^4.9.0",
"tape-await": "0.1.1"
}
}