-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.21 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
{
"name": "@open-node/antman",
"version": "0.7.7",
"description": "Debug node.js process by client REPL on net socket and is silent",
"main": "src/antman.js",
"scripts": {
"lint": "eslint ./src/*",
"test": "jest --coverage",
"test:watch": "jest --watch src",
"readme": "d=`head -n 35 README.md` && (echo \"$d\n\n\n\" && documentation build src/** -f md) > README.md",
"docs": "documentation build src/** -f html -o ./docs",
"release:pre": "npm run readme && npm run docs",
"release": "npm run release:pre && npm publish --registry=https://registry.npmjs.org --access=public",
"release:github": "npm run release:pre && npm publish --registry=https://npm.pkg.github.com/"
},
"bin": "./src/cli/antman.js",
"pre-commit": ["lint", "test"],
"repository": {
"type": "git",
"url": "git+https://github.com/open-node/antman.git"
},
"keywords": ["debugger", "process monitor", "spy", "probe", "develop"],
"author": "Redstone Zhao",
"license": "MIT",
"bugs": {
"url": "https://github.com/open-node/antman/issues"
},
"dependencies": {
"otplib": "^11.0.1"
},
"homepage": "https://github.com/open-node/antman#readme",
"devDependencies": {
"jest": "^24.9.0"
}
}