This repository has been archived by the owner on Jan 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
43 lines (43 loc) · 1.54 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
{
"name": "redux-subspace",
"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 --hoist",
"postinstall": "npm run bootstrap",
"coverage": "istanbul report --root packages --reporter html --reporter text-summary",
"build": "lerna run --parallel build",
"test": "lerna run test && npm run coverage",
"test:watch": "lerna run --parallel test:watch",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"docs:clean": "rimraf _book",
"docs:prepare": "node scripts/prepareDocs.js",
"docs:build": "npm run docs:prepare && gitbook build --timing; rm SUMMARY.md",
"docs:serve": "npm run docs:prepare && gitbook serve",
"docs:publish": "npm run docs:clean && npm run docs:build && gh-pages -d _book -r https://github.com/ioof-holdings/redux-subspace.git -m 'Publishing docs [ci skip]'"
},
"repository": {
"type": "git",
"url": "https://github.com/ioof-holdings/redux-subspace.git"
},
"devDependencies": {
"all-contributors-cli": "6.19.0",
"gh-pages": "3.1.0",
"gitbook-cli": "2.3.2",
"gitbook-plugin-anchorjs": "2.1.0",
"gitbook-plugin-edit-link": "2.0.2",
"gitbook-plugin-github": "2.0.0",
"gitbook-plugin-prism": "2.4.0",
"istanbul": "0.4.5",
"lerna": "3.22.1",
"rimraf": "3.0.2"
}
}