-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 1.43 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
{
"name": "react-one-tab-enforcer",
"version": "2.1.2",
"description": "Prevent users from opening your react app in multiple tabs",
"main": "dist/index.js",
"scripts": {
"test": "eslint",
"eslint": "eslint",
"build": "babel src/ --out-dir dist/ --source-maps"
},
"lint-staged": {
"*.js": [
"npm run eslint -- --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/TheBrainFamily/react-one-tab-enforcer.git"
},
"keywords": [
"react",
"tab",
"enforce"
],
"author": "Łukasz Gandecki",
"license": "ISC",
"bugs": {
"url": "https://github.com/TheBrainFamily/react-one-tab-enforcer/issues"
},
"homepage": "https://github.com/TheBrainFamily/react-one-tab-enforcer#readme",
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"eslint": "^5.6.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.0.0-rc.15",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"react": "^16.5.2",
"react-dom": "^16.5.2"
},
"peerDependencies": {
"react": ">=15.0.1",
"react-dom": ">=15.0.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}