-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
43 lines (43 loc) · 1.15 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
{
"name": "robservable",
"version": "0.2.1",
"description": "Use of Observable notebooks as htmlwidgets in R",
"main": "index.js",
"directories": {
"doc": "docs",
"example": "examples",
"man": "man",
"test": "tests"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"none": "webpack --config webpack.dev.js --mode=none",
"development": "webpack --config webpack.dev.js",
"production": "webpack --config webpack.prod.js",
"watch": "webpack --config webpack.config.js -d --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juba/robservable.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/juba/robservable/issues"
},
"homepage": "https://github.com/juba/robservable#readme",
"devDependencies": {
"css-loader": "^6.2.0",
"style-loader": "^3.2.1",
"webpack": "^5.94.0",
"webpack-cli": "^4.7.2",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"@observablehq/inspector": "^5.0.0",
"@observablehq/runtime": "^5.9.6",
"@observablehq/stdlib": "^5.8.5",
"core-js": "^3.21.1"
}
}