-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
47 lines (47 loc) · 1.28 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
{
"name": "tslab",
"version": "1.0.22",
"description": "Jupyter for JavaScript and TypeScript",
"main": "dist/public.js",
"types": "dist/public.d.ts",
"bin": {
"tslab": "bin/tslab"
},
"repository": "https://github.com/yunabe/tslab",
"author": "Yu Watanabe",
"license": "Apache-2.0",
"files": [
"/dist/**/*.js",
"/dist/**/*.d.ts",
"/bin/**/*",
"/python/**/*.py"
],
"dependencies": {
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"@rollup/plugin-replace": "^2.3.0",
"@tslab/typescript-for-tslab": "5.0.4",
"@types/node": "^18.16.2",
"commander": "^10.0.0",
"rollup": "^2.34.2",
"semver": "^7.3.8",
"zeromq": "^6.0.0-beta.16"
},
"scripts": {
"//": "experimental-vm-modules enables https://nodejs.org/docs/latest-v12.x/api/vm.html#vm_class_vm_sourcetextmodule",
"build": "tsc",
"prepublishOnly": "rm -rf dist && tsc",
"jest": "jest --verbose",
"test": "tsc && jest --verbose --runInBand && npm run clean",
"clean": "rm -rf dist tmp",
"format": "prettier --write src"
},
"devDependencies": {
"@types/jest": "^28.1.8",
"@types/semver": "^7.3.13",
"jest": "^29.4.3",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"typescript": "^5.1.3"
}
}