forked from omniboard-dev/analyzer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·62 lines (62 loc) · 1.65 KB
/
package.json
File metadata and controls
executable file
·62 lines (62 loc) · 1.65 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
{
"name": "@omniboard/analyzer",
"version": "2.17.0",
"description": "",
"main": "dist/index.js",
"private": false,
"engines": {
"node": ">=12.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": "^6.0.1",
"listr2": "^3.11.0",
"strip-json-comments": "^3.1.1",
"strip-json-trailing-commas": "^1.1.0",
"xml2js": "^0.4.23",
"xmldom": "^0.6.0",
"xpath": "0.0.32",
"yargs": "^17.1.1"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"@types/node": "^16.7.2",
"@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"
}