-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.01 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
{
"name": "@open-node/ticker",
"version": "0.1.1",
"description": "log recorder, info and error",
"main": "src/ticker.js",
"scripts": {
"lint": "eslint ./src/*",
"test": "jest --coverage",
"test:watch": "jest --watch src",
"readme": "d=`head -n 25 README.md` && (echo \"$d\n\n\n\" && documentation build src/** -f md) > README.md",
"release": "npm run readme && npm publish --registry=https://registry.npmjs.org --access=public",
"release:github": "npm run readme && npm publish --registry=https://npm.pkg.github.com/"
},
"pre-commit": ["lint", "test"],
"repository": {
"type": "git",
"url": "git+https://github.com/open-node/ticker.git"
},
"keywords": ["heartbeat", "High availability", "availability"],
"author": "Redstone Zhao",
"license": "MIT",
"bugs": {
"url": "https://github.com/open-node/ticker/issues"
},
"homepage": "https://github.com/open-node/ticker#readme",
"devDependencies": {
"jest": "^24.9.0"
},
"dependencies": {
"async": "^3.1.0"
}
}