-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·69 lines (69 loc) · 1.86 KB
/
package.json
File metadata and controls
executable file
·69 lines (69 loc) · 1.86 KB
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
{
"name": "@omniboard/analyzer",
"version": "2.32.0",
"description": "",
"main": "dist/index.js",
"private": false,
"engines": {
"node": ">=14.0.0"
},
"bin": {
"omniboard": "./dist/index.js"
},
"scripts": {
"start": "node -r ts-node/register lib/index.ts",
"build": "tsc",
"watch": "tsc --watch",
"format:test": "prettier lib/**/*.{ts,json}",
"format:write": "prettier lib/**/*.{ts,json} --write",
"release": "npm run format:write && npm run build && standard-version -a && git push --follow-tags origin master && npm publish --access public"
},
"dependencies": {
"@types/listr": "^0.14.4",
"chalk": "^4.1.2",
"enquirer": "^2.3.6",
"filesize": "^8.0.0",
"global-agent": "^3.0.0",
"got": "^11.8.2",
"jsonpath-plus": "^10.1.0",
"listr2": "^6.3.1",
"node-jq": "^6.0.1",
"object-path": "^0.11.8",
"rxjs": "^7.8.0",
"strip-json-comments": "^3.1.1",
"strip-json-trailing-commas": "^1.1.0",
"xml2js": "^0.6.2",
"xmldom": "^0.6.0",
"xpath": "0.0.32",
"yaml": "^2.4.1",
"yargs": "^17.1.1"
},
"devDependencies": {
"@airbnb/node-memwatch": "^2.0.0",
"@types/airbnb__node-memwatch": "^2.0.0",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.2",
"@types/object-path": "^0.11.4",
"@types/xml2js": "^0.4.9",
"@types/xmldom": "^0.1.31",
"@types/yargs": "^17.0.2",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"standard-version": "^9.3.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/omniboard-dev/analyzer.git"
},
"keywords": [
"omniboard.dev"
],
"author": "Tomas Trajan <@tomastrajan>",
"license": "MIT",
"bugs": {
"url": "https://github.com/omniboard-dev/analyzer/issues"
},
"homepage": "https://github.com/omniboard-dev/analyzer#readme"
}