-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
50 lines (50 loc) · 1.24 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
49
50
{
"name": "@observablehq/inspector",
"version": "5.0.1",
"author": {
"name": "Observable, Inc.",
"url": "https://observablehq.com"
},
"license": "ISC",
"type": "module",
"main": "src/index.js",
"module": "src/index.js",
"jsdelivr": "dist/inspector.js",
"unpkg": "dist/inspector.js",
"exports": {
"umd": "./dist/inspector.js",
"default": "./src/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/observablehq/inspector.git"
},
"files": [
"dist/**/*.css",
"dist/**/*.js",
"src/**/*.css",
"src/**/*.js"
],
"scripts": {
"test": "mkdir -p test/output && mocha 'test/**/*-test.js' && eslint src test",
"prepublishOnly": "rm -rf dist && rollup -c && cleancss -o dist/inspector.css src/style.css",
"postpublish": "git push && git push --tags"
},
"_moduleAliases": {
"@observablehq/inspector": "./src/index.js"
},
"dependencies": {
"isoformat": "^0.2.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.0.1",
"clean-css-cli": "^5.6.1",
"eslint": "^8.27.0",
"immutable": "^4.1.0",
"jsdom": "^20.0.2",
"mocha": "^10.1.0",
"module-alias": "^2.2.2",
"rollup": "^3.2.5",
"rollup-plugin-terser": "^7.0.2"
}
}