-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.16 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
{
"name": "@funboxteam/api-validator",
"version": "5.0.3",
"description": "A tool to validate server response against API Blueprint documentation",
"author": "FunBox LLC <wanted@fun-box.ru> (https://funbox.ru)",
"main": "dist/index.js",
"bin": {
"update-schemas": "./dist/update-schemas.js"
},
"scripts": {
"prepublishOnly": "if [ -z \"$CI\" ]; then lawyer; fi && npm run build",
"build": "./node_modules/.bin/babel src --out-dir dist",
"test": "mocha --require @babel/register tests/*.test.js",
"lint": "eslint --cache -c .eslintrc --ext .js ./src ./tests"
},
"repository": {
"type": "git",
"url": "https://github.com/funbox/api-validator"
},
"license": "Apache-2.0",
"dependencies": {
"@funboxteam/crafter": "6.0.2",
"jsonschema": "1.4.0",
"rimraf": "5.0.1"
},
"devDependencies": {
"@babel/cli": "7.17.6",
"@babel/core": "7.12.10",
"@babel/preset-env": "7.12.10",
"@babel/register": "7.12.10",
"@funboxteam/eslint-config": "7.3.0",
"core-js": "3.6.3",
"eslint": "7.32.0",
"mocha": "9.2.2"
},
"peerDependencies": {
"core-js": "^3.6.3",
"regenerator-runtime": "^0.13.7"
}
}