-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.17 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
{
"name": "sbag",
"version": "0.1.0",
"description": "A schema-based API generator",
"main": "index.js",
"bin": {
"sbag": "./bin/generate-dts.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"test:lint": "eslint index.js lib/ --ext js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/batovpasha/sbag.git"
},
"keywords": [
"api"
],
"author": "Pavlo Batov <[email protected]>",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/batovpasha/sbag/issues"
},
"homepage": "https://github.com/batovpasha/sbag#readme",
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^7.25.0",
"eslint-config-webbylab": "^5.4.1",
"eslint-plugin-fetch": "0.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-more": "^1.0.3",
"eslint-plugin-no-require-lodash": "^1.1.0",
"eslint-plugin-prefer-spread": "^1.0.3",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-security": "^1.4.0"
},
"dependencies": {
"ajv": "^8.2.0",
"ajv-formats": "^2.1.0",
"json-schema-to-typescript": "^10.1.4",
"prettier": "^2.3.0",
"ws": "^7.4.5"
}
}