-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.74 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
{
"name": "@muazothman/aws-viz",
"version": "0.0.16",
"description": "Use diagrams to build AWS cloud-native applications",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test-integration": "jest --testPathPattern=integration\\.test\\.ts$ --passWithNoTests",
"test-with-coverage": "jest --coverage --testPathPattern=spec\\.ts$ --passWithNoTests",
"test": "jest --testPathPattern=spec\\.ts$ --passWithNoTests",
"test-no-cache": "jest --testPathPattern=spec\\.ts$ --no-cache --passWithNoTests",
"lint": "tsc --noemit && eslint --ext .ts .",
"build": "yarn clean && tsc",
"watch": "yarn build -- --watch",
"clean": "rimraf dist"
},
"repository": "https://github.com/MuazOthman/aws-viz.git",
"author": "Muaz Othman <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/deepmerge": "^2.2.0",
"@types/html-to-text": "^9.0.0",
"@types/jest": "^29.2.5",
"@types/lodash.isequal": "^4.5.5",
"@types/lodash.uniq": "^4.5.6",
"@types/node": "^18.11.18",
"@types/pako": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.3.1",
"jest-extended": "^3.2.3",
"jest-sonar-reporter": "^2.0.0",
"prettier": "^2.8.2",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.4",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4",
"yarn": "^1.22.17"
},
"dependencies": {
"deepmerge": "^4.2.2",
"fast-xml-parser": "^4.2.4",
"html-to-text": "^9.0.3",
"lodash.isequal": "^4.5.0",
"lodash.uniq": "^4.5.0",
"pako": "^2.1.0",
"yaml-cfn": "^0.3.2"
}
}