-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
73 lines (73 loc) · 2 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "react-loopback",
"version": "0.4.0",
"description": "React plugin to load data from a Loopback API server",
"main": "lib/index",
"scripts": {
"test": "npm run lint && karma start",
"build": "babel ./src -d lib --ignore \"__tests__\"",
"build-umd": "webpack src/index.js umd/react-loopback.js",
"build-min": "webpack -p src/index.js umd/react-loopback.min.js",
"build-all": "npm run build && npm run build-min && npm run build-umd",
"lint": "eslint ./src",
"clean": "rimraf lib/* umd/*",
"postinstall": "node -e \"require('fs').stat('lib', function (e, s) { process.exit(e || !s.isDirectory() ? 1 : 0) })\" || npm run build"
},
"bugs": {
"url": "https://github.com/DiogoDoreto/react-loopback/issues"
},
"repository": "DiogoDoreto/react-loopback",
"keywords": [
"react",
"loopback",
"strongloop"
],
"tags": [
"react",
"loopback"
],
"author": "Diogo Doreto",
"devDependencies": {
"babel-core": "^5.8.25",
"babel-eslint": "^4.1.3",
"babel-loader": "^5.3.2",
"chai": "^3.4.0",
"es6-promise": "^3.0.2",
"eslint": "^1.7.3",
"eslint-loader": "^1.0.0",
"eslint-plugin-react": "^3.6.3",
"file-loader": "^0.8.4",
"karma": "^0.13.11",
"karma-chai": "^0.1.0",
"karma-mocha": "^0.2.0",
"karma-mocha-reporter": "^1.1.1",
"karma-phantomjs-launcher": "^0.2.1",
"karma-phantomjs-shim": "^1.1.1",
"karma-sourcemap-loader": "^0.3.6",
"karma-webpack": "^1.7.0",
"mocha": "^2.3.3",
"null-loader": "^0.1.1",
"open": "0.0.5",
"phantomjs": "^1.9.18",
"react": "^0.14.1",
"react-addons-test-utils": "^0.14.0",
"react-dom": "^0.14.0",
"rimraf": "^2.4.3",
"url-loader": "^0.5.6",
"webpack": "^1.12.2",
"whatwg-fetch": "^0.10.0"
},
"dependencies": {
"babel": "^5.8.23",
"lodash": "^3.10.1"
},
"peerDependencies": {
"react": "^0.14.1"
},
"maintainers": [
{
"name": "Diogo Doreto",
"email": "[email protected]"
}
]
}