forked from sebslomski/react-stats
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
51 lines (51 loc) · 1.27 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
{
"name": "react-fps-stats",
"version": "0.3.1",
"description": "FPS Stats in React",
"repository": "https://github.com/smplrspace/react-fps-stats",
"author": "Thibaut Tiberghien <[email protected]>",
"main": "dist/index.js",
"scripts": {
"build": "babel src -d dist",
"format": "prettier-eslint --write \"src/**/*.js\""
},
"lint-staged": {
"src/**/*.js": [
"prettier-eslint --write",
"git add"
]
},
"peerDependencies": {
"react": ">=16",
"prop-types": "^15.6.2"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.6.1",
"eslint-config-standard": "^12.0.0",
"eslint-config-standard-react": "^7.0.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.11.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.0.1",
"lint-staged": "^7.3.0",
"prettier-eslint-cli": "^5.0.0"
},
"license": "MIT",
"keywords": [
"react",
"stats",
"react-component"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn build && git add dist"
}
}
}