-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 964 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
30
31
32
33
34
35
36
37
38
39
{
"name": "jsjs",
"version": "1.0.0",
"description": "",
"main": "lib/jsjs.umd.js",
"module": "lib/jsjs.esm.js",
"bin": {
"jsjs": "./bin/jsjs"
},
"files": [
"lib"
],
"scripts": {
"start": "npm run build -- NODE_ENV=development",
"build": "node scripts/esbuild.js",
"bin": "node ./bin/jsjs",
"postinstall": "node post-install.js",
"test": "jest --config scripts/jest.config.js",
"coverage": "npm run test -- --coverage",
"prebuild": "npm run postinstall",
"prebin": "npm run postinstall",
"pretest": "npm run postinstall"
},
"keywords": [],
"author": "Steve Xu",
"license": "MIT",
"devDependencies": {
"@types/jest": "29.5.12",
"@types/node": "20.12.5",
"esbuild": "0.20.2",
"jest": "29.7.0",
"monaco-editor": "0.47.0",
"typescript": "5.4.4"
},
"engines": {
"node": ">=16"
},
"packageManager": "[email protected]+sha1.9dfcac89c4010a00ce092c3cda76dab72cd99198"
}