-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.56 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
{
"name": "@depop/apiblint",
"version": "0.1.7",
"description": "Linter for .apib blueprint docs, can be run as a pre-commit hook.",
"main": "src/cli.js",
"dependencies": {
"chalk": "^2.4.2",
"drafter": "^2.0.0",
"escape-string-regexp": "^2.0.0",
"esm": "^3.2.25",
"lodash.partial": "^4.2.1",
"lodash.partialright": "^4.2.1",
"loglevel": "^1.7.1",
"pluralize": "^8.0.0",
"python-range": "^1.0.4",
"walkdir": "^0.4.1",
"yargs": "^13.3.2"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.14",
"@babel/node": "^7.13.13",
"@babel/plugin-proposal-async-generator-functions": "^7.13.8",
"@babel/plugin-proposal-export-default-from": "^7.12.13",
"@babel/plugin-proposal-export-namespace-from": "^7.12.13",
"@babel/preset-env": "^7.13.12",
"@babel/register": "^7.13.14",
"chai": "^4.3.4",
"mocha": "^6.2.3",
"regenerator-runtime": "^0.13.7",
"sinon": "^7.5.0",
"yaml": "^1.10.2"
},
"bin": {
"@depop/apiblint": "bin/apiblint",
"apiblint": "bin/apiblint"
},
"scripts": {
"test": "mocha --require @babel/register --require regenerator-runtime --trace-warnings"
},
"repository": {
"type": "git",
"url": "git+https://github.com/depop/apiblint.git"
},
"keywords": [
"cli",
"apib",
"blueprint"
],
"author": "[email protected]",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/depop/apiblint/issues"
},
"homepage": "https://github.com/depop/apiblint#readme",
"publishConfig": {
"access": "public"
}
}