-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.41 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.41 KB
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
{
"name": "vdebugger",
"version": "0.1.19",
"description": "A Front-End JavaScript Debugger",
"main": "dist/vdebugger.js",
"types": "dist/vdebugger.d.ts",
"scripts": {
"start": "rollup -wc --environment NODE_ENV:development & serve -l 8096",
"build": "rollup -c --environment NODE_ENV:production && cp src/index.d.ts dist/vdebugger.d.ts",
"pub": "npm run test && npm run build && npm publish --registry https://registry.npmjs.org",
"cov": "cat ./coverage/lcov.info | coveralls",
"benchmark": "node tests/benchmark.js",
"test": "jest --colors ---coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/wechatjs/vdebugger"
},
"keywords": [
"vdebugger",
"debugger",
"debug",
"js",
"javascript",
"break",
"breakpoint"
],
"author": "siubaak",
"license": "MIT",
"dependencies": {
"acorn-walk": "^8.3.2",
"astring": "^1.8.6",
"meriyah": "^4.3.9"
},
"devDependencies": {
"@babel/core": "^7.18.5",
"@babel/plugin-transform-runtime": "^7.18.5",
"@babel/preset-env": "^7.18.2",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-replace": "^4.0.0",
"axios": "^0.27.2",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"rollup": "^2.75.7",
"serve": "^14.0.1"
}
}