-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
93 lines (93 loc) · 2.85 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@angular-experts/ng-parsel",
"version": "5.1.1",
"description": "Tool that transforms Angular codebase to JSON representation",
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"bump-version": "rjp package.json version $VERSION",
"start:version": "node --loader ts-node/esm src/bin/ng-parsel.bin.ts --version",
"start:help": "node --loader ts-node/esm src/bin/ng-parsel.bin.ts --help",
"start:parse": "node --loader ts-node/esm src/bin/ng-parsel.bin.ts parse --src './test-spa'",
"start:stats": "node --loader ts-node/esm src/bin/ng-parsel.bin.ts stats --src './test-spa'",
"build": "tsc && npm run copy:readme",
"copy:readme": "copyfiles ./README.md ./dist",
"lint": "eslint src/**/*.ts",
"format:test": "prettier --list-different \"src/**/*.ts\"",
"format:write": "prettier --write \"src/**/*.ts\"",
"test": "jest --config=./jest.config.js",
"test:watch": "jest --config=./jest.config.js --watch",
"test:coverage": "jest --config=./jest.config.js --coverage --coverageReporters=lcov"
},
"bin": "./src/bin/ng-parsel.bin.js",
"repository": {
"type": "git",
"url": "git+https://github.com/angular-experts-io/ng-parsel.git"
},
"main": "src/public-api.js",
"keywords": [
"Angular",
"Typedoc",
"JSON",
"Parser"
],
"author": "Kevin Kreuzer",
"license": "ISC",
"bugs": {
"url": "https://github.com/angular-experts-io/ng-parsel/issues"
},
"homepage": "https://github.com/angular-experts-io/ng-parsel#readme",
"dependencies": {
"@phenomnomnominal/tsquery": "^5.0.1",
"chalk": "^5.1.2",
"commander": "^9.4.1",
"cosmiconfig": "^8.0.0",
"ora": "^5.4.1",
"table": "^6.8.2",
"glob": "^8.0.3"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/expect": "^24.3.0",
"@types/glob": "^8.0.0",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"copyfiles": "^2.4.1",
"eslint": "^8.28.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-ts-webcompat-resolver": "^1.0.0",
"lint-staged": "^13.0.3",
"replace-json-property": "^1.8.0",
"ts-jest": "^29.0.3",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{ts,js,html,css,scss,less,md}": "prettier --write"
},
"exports": {
".": {
"typings": "./src/public-api.js",
"default": "./src/public-api.js"
},
"./types": {
"typings": "./types/index.js",
"default": "./types/index.js"
}
}
}