forked from ioof-holdings/redux-subspace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.11 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
{
"name": "redux-subspace",
"version": "2.0.4-alpha",
"description": "Create isolated subspaces of a Redux store",
"author": "Michael Peyper",
"contributors": [
"Jonathan Peyper",
"Vivian Farrell"
],
"license": "BSD-3-Clause",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"bootstrap": "lerna bootstrap",
"coverage": "istanbul report --root packages --reporter html --reporter text-summary",
"dist": "lerna run --parallel dist",
"lint": "eslint . --ext .js --ext .jsx",
"lint:fix": "eslint . --ext .js --ext .jsx --fix",
"test": "lerna run test && npm run coverage",
"test:watch": "lerna run --parallel test:watch"
},
"repository": {
"type": "git",
"url": "https://github.com/ioof-holdings/redux-subspace.git"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": " ^6.7.7",
"babel-eslint": "^6.0.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.7.2",
"eslint": "^3.13.1",
"istanbul": "^0.4.5",
"lerna": "^2.0.0"
}
}