forked from observablehq/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 911 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
{
"name": "@observablehq/runtime",
"version": "4.25.0",
"license": "ISC",
"main": "dist/runtime.umd.js",
"module": "src/index.js",
"author": {
"name": "Observable, Inc.",
"url": "https://observablehq.com"
},
"repository": {
"type": "git",
"url": "https://github.com/observablehq/runtime.git"
},
"scripts": {
"test": "tape -r esm 'test/**/*-test.js'",
"prepublishOnly": "rm -rf dist && rollup -c",
"postpublish": "git push && git push --tags"
},
"files": [
"src/**/*.js",
"dist/**/*.js"
],
"dependencies": {
"@observablehq/inspector": "^3.2.2",
"@observablehq/stdlib": "^3.4.1"
},
"devDependencies": {
"eslint": "^7.18.0",
"esm": "^3.2.25",
"jsdom": "^17.0.0",
"rollup": "^2.37.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"tape": "^4.13.3",
"tape-await": "^0.1.2"
}
}