-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.51 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "epor",
"version": "1.5.0",
"description": "make you easy to write daily/weekly report",
"scripts": {
"build": "rollup -c",
"publish-plus": "npm run build && npm publish",
"test": "jest",
"coverage": "jest --coverage",
"run-dev": "node lib/index.js"
},
"bin": {
"epor": "bin/index.js"
},
"engines": {
"node": ">=6"
},
"main": "./lib/index.js",
"keywords": [
"daily",
"report"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zhanzizhen/epor.git"
},
"author": "zhanzizhen",
"license": "MIT",
"dependencies": {
"chalk": "^3.0.0",
"git-user-name": "^2.0.0",
"prompts": "^2.3.0",
"update-notifier": "^3.0.1",
"yargs": "^15.0.2"
},
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/plugin-transform-typescript": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"@babel/preset-typescript": "^7.7.2",
"@types/git-user-name": "^2.0.0",
"@types/prompts": "^2.0.3",
"@types/update-notifier": "^2.5.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"jest": "^24.9.0",
"rollup": "^1.27.8",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-typescript": "^1.0.1",
"tslib": "^1.10.0",
"typescript": "^3.7.3"
}
}