This repository has been archived by the owner on Sep 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 1.77 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
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "reshort",
"version": "1.2.0",
"description": "A way to write less in our actions",
"license": "MIT",
"repository": "robbporto/reshort",
"main": "dist/index.js",
"author": {
"name": "Robson Porto",
"email": "[email protected]",
"url": "https://github.com/robbporto"
},
"files": [
"dist",
"src"
],
"scripts": {
"test": "jest",
"test-watch": "jest --watch",
"coverage": "npm test -- --coverage",
"postcoverage": "opn coverage/lcov-report/index.html",
"lint": "eslint . --fix",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "babel src -d dist",
"preversion": "npm run lint && npm test && npm run build",
"version": "standard-changelog && git add CHANGELOG.md",
"postpublish": "git push origin master --follow-tags"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"keywords": [
"reshort"
],
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^9.0.0",
"babel-jest": "^23.6.0",
"eslint": "^5.6.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^2.6.2",
"husky": "^1.0.0-rc.14",
"jest-cli": "^23.6.0",
"lint-staged": "^7.2.2",
"lodash": "^4.17.11",
"opn-cli": "^3.1.0",
"prettier": "^1.14.2",
"rimraf": "^2.6.2",
"standard-changelog": "^2.0.1"
},
"peerDependencies": {
"react": "^16.5.2",
"react-hot-loader": "^4.3.11"
}
}