-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 840 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 840 Bytes
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
{
"name": "openspace-api-js",
"version": "0.1.6",
"description": "OpenSpace Socket/Websocket API bindings for JavaScript",
"main": "src/node.js",
"browser": {
"./src/node.js": "./src/browser.js"
},
"scripts": {
"build": "rimraf dist && webpack --config webpack.config.js",
"jsdoc": "rimraf docs && jsdoc -d docs package.json index.js topic.js && mv docs/openspace-api/0.1.0/* docs"
},
"author": "OpenSpace Team",
"license": "MIT",
"repository": "https://github.com/OpenSpace/openspace-api-js",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-loader": "^8.0.6",
"jsdoc": "^3.6.2",
"rimraf": "^2.6.3",
"webpack": "^5.105.2",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"core-js": "^3.1.3",
"regenerator-runtime": "^0.13.2"
}
}