-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.15 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
{
"name": "asyncapi-problem",
"version": "0.0.1",
"description": "AsyncAPI Problem interface",
"type": "commonjs",
"main": "./lib/index.js",
"scripts": {
"build": "tsc",
"test": "cross-env CI=true jest --coverage",
"lint": "eslint --no-error-on-unmatched-pattern --max-warnings 0 --config \".eslintrc\" \".\"",
"lint:fix": "eslint --no-error-on-unmatched-pattern --max-warnings 0 --config \".eslintrc\" \".\" --fix",
"generate:readme:toc": "markdown-toc -i \"README.md\""
},
"bugs": {
"url": "https://github.com/imabp/asyncapi_problem/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/imabp/asyncapi_problem.git"
},
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"homepage": "https://github.com/imabp/asyncapi_problem",
"devDependencies": {
"@jest/types": "^27.5.1",
"@types/jest": "^27.4.1",
"cross-env": "^7.0.3",
"eslint": "^8.14.0",
"eslint-plugin-security": "^1.5.0",
"eslint-plugin-sonarjs": "^0.13.0",
"jest": "^27.5.1",
"markdown-toc": "^1.2.0",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
}
}