File tree 5 files changed +15
-4
lines changed
5 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "stage" : 0
2
+ "stage" : 0 ,
3
+ "optional" : [" runtime" ]
3
4
}
Original file line number Diff line number Diff line change 1
1
node_modules
2
2
npm-debug.log
3
3
.DS_Store
4
+ lib
Original file line number Diff line number Diff line change
1
+ src
2
+ examples
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " redux" ,
3
- "version" : " 0.1.0" ,
4
- "description" : " Work in progress" ,
3
+ "version" : " 0.2.0" ,
4
+ "description" : " An experiment in fully hot-reloadable Flux" ,
5
+ "main" : " lib/index.js" ,
5
6
"scripts" : {
6
7
"start" : " cd examples && node server.js" ,
7
- "lint" : " eslint src"
8
+ "lint" : " eslint src" ,
9
+ "build" : " ./scripts/build" ,
10
+ "prepublish" : " npm run build"
8
11
},
9
12
"repository" : {
10
13
"type" : " git" ,
28
31
},
29
32
"homepage" : " https://github.com/gaearon/redux" ,
30
33
"devDependencies" : {
34
+ "babel" : " ^5.4.7" ,
31
35
"babel-core" : " ^5.4.7" ,
32
36
"babel-eslint" : " ^3.1.9" ,
33
37
"babel-loader" : " ^5.1.2" ,
37
41
"webpack-dev-server" : " ^1.8.2"
38
42
},
39
43
"dependencies" : {
44
+ "babel-runtime" : " ^5.4.7" ,
40
45
"lodash" : " ^3.9.3" ,
41
46
"react" : " ^0.13.0"
42
47
}
Original file line number Diff line number Diff line change
1
+ #! /bin/sh
2
+ ./node_modules/.bin/babel src --out-dir lib
You can’t perform that action at this time.
0 commit comments