-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
63 lines (63 loc) · 2.17 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "bivrost",
"version": "1.0.0",
"description":
"Bivrost allows to organize a simple interface to asynchronous APIs.",
"keywords": ["data-source", "api", "fetch", "axios", "local-storage"],
"author": "tuchk4 <[email protected]>",
"scripts": {
"dev": "lerna run dev --stream --parallel",
"test": "jest",
"test-dev": "jest --watch",
"docs:clean": "rimraf _book",
"docs:prepare": "gitbook install",
"docs:build":
"npm run docs:prepare && rm -rf _book && ./node_modules/.bin/gitbook build",
"docs:watch": "npm run docs:prepare && ./node_modules/.bin/gitbook serve",
"docs:publish":
"npm run docs:build && cd _book && git init && git commit --allow-empty -m 'Update docs' && git checkout -b gh-pages && git add . && git commit -am 'Update docs' && git push [email protected]:tuchk4/bivrost gh-pages --force",
"precommit": "lint-staged",
"format":
"prettier --trailing-comma es5 --single-quote --write 'packages/*/*.js' 'packages/*/!(node_modules|coverage)/**/*.js'"
},
"jest": {
"rootDir": "./packages",
"setupFiles": ["./bivrost/__tests__/localstorage-mock.js"],
"modulePathIgnorePatterns": [
"./bivrost/__tests__/http-bin-api.js",
"./bivrost/__tests__/localstorage-mock.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/tuchk4/bivrost.git"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"gitbook-cli": "^2.3.2",
"gitbook-plugin-ga": "^2.0.0",
"husky": "^0.14.3",
"jest": "^21.2.1",
"lerna": "^3.4.1",
"lint-staged": "^5.0.0",
"prettier": "^1.8.2"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/frankland/bivrost/issues"
},
"homepage": "https://github.com/frankland/bivrost",
"lint-staged": {
"*.js": ["prettier --trailing-comma es5 --single-quote --write", "git add"]
},
"dependencies": {
"gitbook-plugin-anker-enable": "0.0.4",
"gitbook-plugin-edit-link": "^2.0.2",
"gitbook-plugin-github": "^2.0.0",
"gitbook-plugin-prism": "^2.3.0"
}
}