-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 1.98 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
{
"name": "hypothesis-api-client",
"version": "0.1.14",
"description": "A Hypothes.is API client for browser and server-side",
"homepage": "https://github.com/haritzmedina/hypothesis-api-client",
"author": {
"name": "Haritz Medina",
"email": "[email protected]",
"url": "https://haritzmedina.com"
},
"files": [
"lib"
],
"main": "lib/index.js",
"keywords": [
"hypothes.is",
"hypothesis",
"client",
"browser",
"node",
"api"
],
"dependencies": {
"axios": "^0.26.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"coveralls": "^3.1.1",
"documentation": "^13.2.5",
"dotenv": "^16.0.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0-1",
"eslint-config-xo": "^0.40.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^4.1.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.7",
"mkdirp": "^1.0.4",
"prettier": "^2.6.2",
"puppeteer": "^13.5.2"
},
"runkitExampleFilename": "./runkitExample.js",
"scripts": {
"jsdoc": "documentation build lib/*.js -f html -o ./docs",
"prepublishOnly": "npm audit",
"pretest": "eslint .",
"precommit": "lint-staged",
"test": "jest --coverage"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"eslintConfig": {
"extends": [
"xo",
"prettier"
],
"env": {
"jest": true,
"node": true
},
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"printWidth": 90
}
]
},
"plugins": [
"prettier"
]
},
"repository": "haritzmedina/hypothesis-api-client",
"jest": {
"testEnvironment": "node"
},
"license": "MIT"
}