-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.31 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.31 KB
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
51
52
53
{
"name": "@statewalker/parse-observable",
"version": "0.3.0",
"description": "Parser for ObservableHQ interactive cells",
"keywords": [],
"homepage": "https://github.com/statewalker/statewalker-parse-observable",
"author": {
"name": "Mikhail Kotelnikov",
"email": "mikhail.kotelnikov@gmail.com"
},
"license": "MIT",
"type": "module",
"files": [
"dist/**/package.json",
"dist/**/*.js",
"src/**/*.js",
"index.js"
],
"module": "src/index.js",
"main": "src/index.js",
"jsdelivr": "dist/index.js",
"unpkg": "dist/index.js",
"exports": {
"umd": "./dist/index-umd.min.js",
"default": "./src/index.js"
},
"dependencies": {
"@observablehq/parser": "^6.1.0",
"acorn-walk": "^8.3.2"
},
"devDependencies": {
"@observablehq/runtime": "^5.9.7",
"@statewalker/rollup": "^0.1.6",
"eslint": "^8.56.0",
"expect.js": "^0.3.1",
"mocha": "^10.2.0",
"rollup": "^4.9.6"
},
"repository": {
"type": "git",
"url": "git@github.com:statewalker/statewalker-parse-observable.git"
},
"scripts": {
"eslint": "eslint src",
"rollup": "rollup -c",
"test": "mocha -R spec ./test/index.js && yarn eslint",
"prepublishOnly": "rm -rf dist && yarn test && yarn rollup"
},
"sideEffects": false,
"publishConfig": {
"access": "public"
}
}