-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 934 Bytes
/
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
{
"name": "react-server-status",
"version": "1.1.1",
"description": "A declarative way to set server status",
"main": "lib/index.js",
"browser": "lib/browser.js",
"scripts": {
"build": "babel src --out-dir lib",
"clean": "rimraf lib",
"test": "npm run lint",
"lint": "eslint .",
"check": "ncu",
"prepublish": "npm test && npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/vgno/react-server-status"
},
"author": "VG",
"license": "MIT",
"dependencies": {
"prop-types": "^15.5.8",
"react-side-effect": "~1.1.0"
},
"devDependencies": {
"babel": "~5.8.21",
"babel-eslint": "~4.1.1",
"eslint": "~1.10.1",
"eslint-config-vgno": "~5.0.0",
"eslint-plugin-react": "~3.10.0",
"npm-check-updates": "~2.5.1",
"rimraf": "~2.4.3"
},
"peerDependencies": {
"react": "^0.14.9 || ^15.3.0 || ^16.0.0"
}
}