-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.57 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
49
50
51
52
{
"name": "jupyter-sharing",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "cross-env TS_NODE_COMPILER_OPTIONS='{ \"module\": \"commonjs\" }' mocha -r ts-node/register src/*/*.spec.ts ",
"watch": "tsc-watch --onSuccess 'sh ./deployment/jupyter/update.sh'",
"build": "tsc && npm run copyExternal",
"copyExternal": "cp -r ./src/external ./extensions/;",
"watchify": "browserify src/colab.ts -p [ tsify ] > build/bundle.js",
"lint": "tslint --project tsconfig.json src/*.ts src/**/*.ts",
"clean": "sh ./deployment/jupyter/uninstall.sh"
},
"author": "April Wang",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.4.0",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/quill": "^2.0.2",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"sdb-ts": "^0.2.6",
"ts-node": "^8.3.0",
"tsc-watch": "^2.2.1",
"tsify": "^4.0.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.4000",
"typings": "^2.1.1"
},
"dependencies": {
"@babel/register": "^7.4.0",
"@types/node": "^11.11.5",
"@types/sharedb": "^1.0.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"browserify": "^16.3.0",
"codemirror": "^5.48.2",
"diff": "^4.0.1",
"gitmoji-cli": "^1.9.4",
"list.js": "^1.5.0",
"mocha": "^6.1.4",
"quill": "^1.3.7",
"resemblejs": "^3.1.0",
"tslint": "^5.18.0"
}
}