-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
{
"name": "react-resource",
"version": "2.0.9",
"description": "A factory which creates a resource object that lets you interact with RESTful server-side data sources.",
"scripts": {
"build": "babel ./src --out-dir ./dist",
"prepublish": "npm run build",
"start": "webpack-dev-server --content-base ./static/ --port 3000"
},
"main": "dist/index.js",
"dependencies": {
"lodash": "^4.17.4",
"promise": "^8.0.0",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"path": "^0.12.7",
"webpack": "^3.1.0",
"webpack-dev-server": "^2.5.1"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/cidevant/react-resource.git"
},
"keywords": [
"React",
"Resource",
"ngResource",
"REST",
"RESTful",
"RESTful Api",
"Promise",
"Api"
],
"author": "Cidevant Von Goethe <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cidevant/react-resource/issues"
},
"homepage": "https://github.com/cidevant/react-resource#readme"
}