This repository has been archived by the owner on Nov 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
87 lines (87 loc) · 2.02 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
{
"name": "gavel",
"version": "0.0.0-semantically-released",
"description": "Validator of HTTP transactions (JavaScript implementation)",
"main": "build/index.js",
"typings": "typings.d.ts",
"engines": {
"node": ">= 10.18"
},
"bin": {
"gavel": "bin/gavel"
},
"scripts": {
"start": "npm run build -- --watch",
"build": "rollup -c=rollup.config.js",
"lint": "eslint lib/**/*.js test/**/*.js",
"test": "npm run test:unit && npm run test:features",
"test:unit": "mocha \"test/**/*.test.js\"",
"test:features": "node scripts/cucumber.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"eslint"
]
},
"files": [
"LICENSE",
"bin",
"lib"
],
"dependencies": {
"ajv": "6.12.6",
"commander": "8.1.0",
"content-type": "1.0.4",
"curl-trace-parser": "0.0.10",
"deep-equal": "2.0.5",
"http-string-parser": "0.0.6",
"media-typer": "1.1.0",
"tv4": "1.3.0"
},
"devDependencies": {
"@rollup/plugin-json": "4.1.0",
"caseless": "0.12.0",
"chai": "4.3.4",
"clone": "2.1.2",
"cross-spawn": "7.0.3",
"cucumber": "1.3.2",
"eslint": "6.8.0",
"eslint-config-airbnb": "17.1.1",
"eslint-config-airbnb-base": "13.2.0",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-import": "2.23.4",
"gavel-spec": "5.0.0",
"husky": "4.3.8",
"json-pointer": "0.6.1",
"lint-staged": "11.1.1",
"mocha": "8.3.2",
"prettier": "2.3.2",
"rollup": "2.55.1",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-terser": "7.0.2",
"semantic-release": "17.4.2",
"sinon": "9.2.4",
"url": "0.11.0"
},
"repository": {
"type": "git",
"url": "https://github.com/apiaryio/gavel.js"
},
"keywords": [
"http",
"validation",
"diff",
"request",
"response",
"gavel"
],
"author": "Apiary Czech Republic, s.r.o. <[email protected]>",
"license": "MIT"
}