-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
70 lines (70 loc) · 2.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@asyncapi/diff",
"version": "0.4.1",
"description": "AsyncDiff is a library which compares two AsyncAPI Documents and provides information about the differences by pointing out explicitly informations like breaking changes.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"/lib",
"./README.md",
"./LICENSE"
],
"scripts": {
"start": "tsc --watch",
"build": "tsc",
"docs": "typedoc --entryPointStrategy expand --options typedoc.json",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint --max-warnings 0 --config .eslintrc .",
"lint:fix": "eslint --max-warnings 0 --config .eslintrc . --fix",
"get:version": "echo $npm_package_version",
"get:name": "echo $npm_package_name",
"generate:readme:toc": "markdown-toc -i README.md",
"generate:assets": "npm run build && npm run docs && npm run generate:readme:toc",
"bump:version": "npm --no-git-tag-version --allow-same-version version $VERSION",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asyncapi/diff.git"
},
"keywords": [
"asyncapi",
"diff"
],
"author": "aayushmau5",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/asyncapi/diff/issues"
},
"homepage": "https://github.com/asyncapi/diff#readme",
"dependencies": {
"fast-json-patch": "^3.0.0-1",
"js-yaml": "^4.1.0",
"json2md": "^1.12.0"
},
"devDependencies": {
"@asyncapi/parser": "^3.1.0",
"@types/jest": "^29.5.1",
"@types/js-yaml": "^4.0.5",
"@types/json2md": "^1.5.1",
"@types/node": "^15.12.1",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.28.0",
"eslint-plugin-github": "^4.1.3",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-sonarjs": "^0.8.0-125",
"jest": "^29.5.0",
"markdown-toc": "^1.2.0",
"ts-jest": "^29.1.0",
"typedoc": "^0.22.11",
"typedoc-plugin-markdown": "^3.11.12",
"typedoc-plugin-rename-defaults": "^0.4.0",
"typescript": "^4.3.2"
},
"publishConfig": {
"access": "public"
}
}