forked from iamdustan/react-resolver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.12 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-resolver-csp",
"version": "0.0.4",
"description": "Isomorphic library to lazy-load data for React components with csp",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"devDependencies": {
"babel": "^5.1.13",
"babel-eslint": "^2.0.2",
"cheerio": "^0.19.0",
"eslint": "^0.19.0",
"eslint-plugin-react": "^2.2.0",
"jsdom": "^3.1.2",
"mocha": "^2.2.4",
"react": "0.13.x"
},
"peerDependencies": {
"react": "0.13.x"
},
"scripts": {
"build": "babel --stage 0 --out-dir dist/ src/",
"lint": "eslint src test",
"prepublish": "npm run build",
"test": "npm run build && mocha",
"debug": "npm run build && mocha --debug-brk"
},
"repository": {
"type": "git",
"url": "git://github.com/gilesbradshaw/react-resolver-csp.git"
},
"keywords": [
"react",
"lazy",
"load",
"resolve"
],
"author": "Giles Bradshaw",
"license": "ISC",
"bugs": {
"url": "https://github.com/gilesbradshaw/react-resolver-csp/issues"
},
"homepage": "https://github.com/gilesbradshaw/react-resolver-csp",
"dependencies": {
}
}