-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.75 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
{
"name": "@asyncapi/problem",
"version": "1.0.0",
"description": "AsyncAPI Problem interface",
"bugs": {
"url": "https://github.com/asyncapi/problem/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/asyncapi/problem.git"
},
"publishConfig": {
"access": "public"
},
"license": "Apache-2.0",
"homepage": "https://github.com/asyncapi/problem",
"sideEffects": false,
"main": "cjs/index.js",
"module": "esm/index.js",
"types": "esm/index.d.ts",
"files": [
"/esm",
"/cjs",
"/browser",
"LICENSE",
"README.md"
],
"scripts": {
"build": "npm run build:esm && npm run build:cjs",
"build:dev": "npm run build:esm",
"build:esm": "tsc",
"build:cjs": "tsc --project ./tsconfig.cjs.json",
"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\"",
"generate:assets": "npm run build && npm run generate:readme:toc",
"bump:version": "npm --no-git-tag-version --allow-same-version version $VERSION",
"prepublishOnly": "npm run generate:assets"
},
"devDependencies": {
"@jest/types": "^29.3.1",
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"cross-env": "^7.0.3",
"eslint": "^8.31.0",
"eslint-plugin-github": "^4.6.0",
"eslint-plugin-security": "^1.6.0",
"eslint-plugin-sonarjs": "^0.18.0",
"jest": "^29.3.1",
"markdown-toc": "^1.2.0",
"ts-jest": "^29.0.4",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
}
}