-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
48 lines (48 loc) · 1.28 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
{
"name": "@alex.garcia/unofficial-observablehq-compiler",
"version": "0.5.0",
"description": "An unofficial compiler to bind @observablehq/parser and @observablehq/runtime",
"main": "dist/index.js",
"author": "Alex Garcia <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/asg017/unofficial-observablehq-compiler.git"
},
"license": "ISC",
"publishConfig": {
"access": "public"
},
"files": [
"dist/**/*.js"
],
"scripts": {
"build": "rollup -c",
"format": "prettier --write src/**/*.js",
"test": "npm run build && tape 'test/**/*-test.js' && npm run test-format",
"test-format": "prettier --check src/**/*.js",
"test-html": "http-server",
"prepublishOnly": "npm run build",
"postpublish": "git push && git push --tags"
},
"keywords": [
"observable",
"observablehq",
"observable-notebooks",
"notebooks",
"parser",
"compiler"
],
"dependencies": {
"@observablehq/parser": "^3.0.0",
"acorn-walk": "^7.0.0"
},
"devDependencies": {
"@observablehq/runtime": "^4.6.4",
"http-server": "^0.11.1",
"prettier": "1.19.1",
"rollup": "^1.26.4",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"tape": "^4.11.0"
}
}