-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 989 Bytes
/
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
{
"name": "samplelabextension",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"clean": "rimraf docs && rimraf lib && rimraf samplelabextension/static",
"build:src": "tsc --project src",
"build:extension": "node scripts/buildExtension.js",
"build": "npm run build:src && npm run build:extension",
"example:browser": "cd examples/browser && npm run update && npm run build",
"example:node": "cd examples/node && npm install",
"build:examples": "npm run example:browser && npm run example:node",
"docs": "typedoc --mode file --module commonjs --excludeNotExported --target es5 --moduleResolution node --out docs/ src",
"prepublish": "npm run build"
},
"author": "",
"license": "MIT",
"dependencies": {
"jupyterlab": "^0.3.0",
"phosphor": "^0.6.1"
},
"devDependencies": {
"jupyterlab-extension-builder": "^0.4.1",
"rimraf": "^2.5.4",
"typedoc": "^0.4.5",
"typescript": "^1.8.10"
}
}