This repository has been archived by the owner on Apr 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.59 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
{
"name": "react-http-dom",
"version": "0.1.4",
"description": "React DOMs for HTTP/HTTPS protocols.",
"main": "lib/index.js",
"engines": {
"node": "^8.10.0"
},
"scripts": {
"build": "yarn clean && ./node_modules/.bin/babel src --out-dir lib",
"lint": "eslint -c .eslintrc.json src",
"clean": "rimraf lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jayasme/react-http-dom.git"
},
"author": "Scott Rong",
"license": "MIT",
"bugs": {
"url": "https://github.com/jayasme/react-http-dom/issues"
},
"keywords": [
"react",
"http",
"request"
],
"homepage": "https://github.com/jayasme/react-http-dom#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.3.3",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.3.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/preset-env": "^7.3.1",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-plugin-lodash": "^3.3.4",
"eslint": "^5.15.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"prettier": "^1.16.4"
},
"dependencies": {
"prop-types": "^15.7.2",
"react": "^15.0.0 || ^16.0.0",
"request": "^2.88.0"
}
}