-
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": "alt-resolver",
"version": "0.1.0",
"description": "A connect to stores that works with react resolver",
"main": "lib/resolver.js",
"scripts": {
"build": "npm run clean && npm run transpile",
"clean": "rimraf lib",
"prepublish": "npm run build",
"pretest": "npm run clean && npm run transpile",
"test": "babel-node test/index.js",
"transpile": "babel src --out-dir lib --stage 0"
},
"repository": {
"type": "git",
"url": "[email protected]:altjs/resolver.git"
},
"dependencies": {
"alt-react": "0.0.1",
"react-resolver": "2.0.3"
},
"keywords": [
"resolver",
"async",
"resolve",
"isomorphic",
"flux",
"dispatch",
"connect",
"react",
"stores"
],
"author": "Josh Perez <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/altjs/resolver/issues"
},
"homepage": "https://github.com/altjs/resolver",
"devDependencies": {
"react": "0.14.0",
"react-dom": "0.14.0",
"rimraf": "2.4.3"
}
}