forked from ericclemmons/react-resolver
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.02 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
{
"name": "react-resolver",
"version": "1.0.0",
"description": "Isomorphic library to lazy-load data for React components",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"devDependencies": {
"babel": "^5.1.4",
"babel-eslint": "^2.0.2",
"eslint": "^0.19.0",
"eslint-plugin-react": "^2.1.0",
"jsdom": "^3.1.2",
"mocha": "^2.2.4",
"react": "0.13.x"
},
"peerDependencies": {
"react": "0.13.x"
},
"scripts": {
"build": "babel --out-dir dist/ src/",
"lint": "eslint src",
"prepublish": "npm run build",
"test": "npm run build && mocha"
},
"repository": {
"type": "git",
"url": "git://github.com/ericclemmons/react-resolver.git"
},
"keywords": [
"react",
"lazy",
"load",
"resolve"
],
"author": "Eric Clemmons <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/ericclemmons/react-resolver/issues"
},
"homepage": "https://github.com/ericclemmons/react-resolver",
"dependencies": {}
}