-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.22 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
{
"name": "@open-node/logger",
"version": "0.5.1",
"description": "log recorder, info and error",
"main": "src/logger.js",
"scripts": {
"lint": "eslint ./src/*",
"test": "jest --coverage",
"test:watch": "jest --watch src",
"readme": "d=`head -n 20 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/logger.git"
},
"keywords": ["debugger", "log", "logger"],
"author": "Redstone Zhao",
"license": "MIT",
"bugs": {
"url": "https://github.com/open-node/logger/issues"
},
"homepage": "https://github.com/open-node/logger#readme",
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-react": "^7.21.4",
"jest": "^25.1.0",
"lodash": "^4.17.21"
},
"dependencies": {
"uuid": "^3.3.3"
}
}