-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
95 lines (95 loc) · 2.65 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "apollo-link-logger",
"version": "0.0.0-development",
"description": "Logger for Apollo Link that uses a similar format to redux-logger. Includes performance information.",
"author": "Adrian Perez [email protected]",
"license": "MIT",
"module": "es/index.js",
"main": "lib/index.js",
"engines": {
"node": ">= 10",
"npm": "> 3"
},
"files": [
"es",
"dist",
"lib"
],
"scripts": {
"start": "webpack",
"commit": "commit",
"precommit": "lint-staged",
"commitmsg": "commitlint -e $GIT_PARAMS",
"clean": "rimraf es/* src/* dist/* coverage/*",
"lint": "eslint src",
"add-contributor": "all-contributors add",
"generate-contributors": "all-contributors generate",
"build:es": "cross-env BABEL_ENV=es babel src -q -d es",
"build:cjs": "cross-env BABEL_ENV=cjs babel src -q -d lib",
"build": "npm run build:es && npm run build:cjs",
"test": "jest",
"prettier:js": "prettier --write --trailing-comma all --tab-width 2 --single-quote --print-width 80 \"src/**/*.js\" \"!**/dist/**\"",
"prepare": "npm run build",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"lint-staged": {
"*.js": [
"prettier --write --trailing-comma all --tab-width 2 --single-quote --print-width 80",
"git add",
"jest --bail --findRelatedTests"
]
},
"config": {
"commitzen": {
"path": "@commitlint/prompt"
}
},
"jest": {
"testMatch": [
"<rootDir>/src/**/*.test.js"
],
"collectCoverageFrom": [
"src/**/*.js",
"!**/node_modules/**",
"!**/vendor/**"
],
"testURL": "http://localhost"
},
"quokka": {
"babel": true
},
"devDependencies": {
"@commitlint/cli": "^6.1.3",
"@commitlint/config-conventional": "^7.0.0",
"all-contributors-cli": "^5.3.0",
"babel-cli": "^6.0.0",
"babel-core": "^6.0.0",
"babel-eslint": "^8.2.3",
"babel-jest": "23.0.1",
"babel-preset-env": "^1.6.0",
"commitizen": "^2.9.6",
"cross-env": "^5.1.4",
"eslint": "^5.0.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-prettier": "^2.4.0",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jest": "^21.0.0",
"eslint-plugin-prettier": "^2.2.0",
"husky": "^0.14.3",
"jest": "^22.4.3",
"lint-staged": "^7.0.4",
"prettier": "^1.8.1",
"rimraf": "~2.6.2",
"semantic-release": "^15.9.3",
"travis-deploy-once": "^5.0.1"
},
"peerDependencies": {
"@apollo/client": "^3.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/blackxored/apollo-link-logger.git"
}
}