notebook/buildutils/package.json

44 lines
1.0 KiB
JSON
Raw Normal View History

2021-01-19 16:35:54 +08:00
{
2022-01-18 20:18:12 +08:00
"name": "@jupyter-notebook/buildutils",
"version": "0.4.0-alpha.1",
2021-01-19 16:35:54 +08:00
"private": true,
2022-01-18 20:18:12 +08:00
"description": "Jupyter Notebook - Build Utilities",
"homepage": "https://github.com/jupyterlab/retrolab",
2021-01-19 16:35:54 +08:00
"bugs": {
"url": "https://github.com/jupyterlab/retrolab/issues"
2021-01-19 16:35:54 +08:00
},
"repository": {
"type": "git",
"url": "https://github.com/jupyterlab/retrolab.git"
2021-01-19 16:35:54 +08:00
},
"license": "BSD-3-Clause",
"author": "Project Jupyter",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib/"
},
"files": [
"lib/*.d.ts",
"lib/*.js.map",
"lib/*.js"
],
"scripts": {
"build": "tsc",
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
"prepublishOnly": "npm run build",
"watch": "tsc -w --listEmittedFiles"
},
"dependencies": {
"@jupyterlab/buildutils": "^4.0.0-alpha.5",
2021-01-19 17:46:01 +08:00
"commander": "^6.2.0",
"fs-extra": "^9.1.0",
2021-01-19 16:35:54 +08:00
"typescript": "~4.1.3"
},
"devDependencies": {
"@types/fs-extra": "^9.0.10",
2021-01-19 16:35:54 +08:00
"@types/node": "^14.6.1",
"rimraf": "~3.0.0"
}
}