-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.09 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
{
"name": "redux-owl",
"version": "0.0.1",
"description": "Redux Network One Way Links",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib dist",
"build": "babel src --out-dir lib",
"build:watch": "watch 'npm run build' ./src",
"todo:test": "NODE_ENV=test mocha --compilers js:babel/register --recursive",
"todo:test:watch": "NODE_ENV=test mocha --compilers js:babel/register --recursive --watch",
"test:cov": "babel-node ./node_modules/.bin/isparta cover ./node_modules/.bin/_mocha -- --recursive",
"prepublish": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rt2zz/redux-owl.git"
},
"homepage": "https://github.com/rt2zz/redux-owl",
"keywords": [
"redux",
"middleware",
"redux-middleware",
"flux"
],
"author": {
"name": "Zack Story",
"email": "zack@root-two.com"
},
"license": "MIT",
"devDependencies": {
"babel": "^5.6.14",
"babel-core": "^5.6.15",
"babel-eslint": "^3.1.20"
},
"dependencies": {
"invariant": "^2.1.0",
"lodash": "^3.10.0"
}
}