This repository has been archived by the owner on Nov 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.56 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
53
{
"name": "@illumidesk/starboard-nbgrader",
"version": "0.3.0",
"description": "Starboard and nbgrader proof of concept",
"main": "dist/index.js",
"dependencies": {
"js-md5": "^0.7.3",
"jupystar": "^0.2.1",
"rollup": "^2.41.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"starboard-jupyter": "^0.2.10",
"starboard-notebook": "^0.12.1",
"starboard-wrap": "^0.4.0"
},
"devDependencies": {
"@babel/preset-env": "^7.14.7",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.0",
"@types/fs-extra": "^9.0.11",
"@types/jest": "^26.0.23",
"@types/js-md5": "^0.4.2",
"clean-css": "^5.1.1",
"esbuild": "^0.11.16",
"fs-extra": "^8.1.0",
"jest": "^27.0.6",
"node-fetch": "^2.6.1",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"rollup-plugin-esbuild": "^4.2.3",
"starlit": "^0.1.17",
"ts-jest": "^27.0.3",
"typescript": "^4.2.3"
},
"scripts": {
"build": "rollup -c && tsc",
"start": "rollup -c --watch",
"test": "jest",
"nbtest": "starlit nbtest test/notebooks --serve_static starboard-nbgrader=./dist",
"format": "prettier -w src",
"prepublishOnly": "rimraf dist && npm i && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IllumiDesk/starboard-nbgrader.git"
},
"author": "IllumiDesk",
"license": "MIT",
"bugs": {
"url": "https://github.com/IllumiDesk/starboard-nbgrader/issues"
},
"homepage": "https://github.com/IllumiDesk/starboard-nbgrader#readme"
}