-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.54 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.54 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
{
"name": "tsdepend",
"version": "0.0.0-development",
"description": "tsdepend helps you, to keep your code organized over time.",
"main": "index.js",
"bin": {
"tsdepend": "dist/cli/index.js"
},
"repository": "git@github.com:ibm/tsdepend.git",
"author": "Alexander Bartels <alexander.bartels@ibm.com>",
"license": "Apache-2.0",
"scripts": {
"commit": "yarn git-cz",
"clean": "./node_modules/.bin/rimraf dist",
"test": "jest",
"citest": "CI=true jest --reporters=default --reporters=jest-github-actions-reporter --coverage",
"test:coverage": "jest --coverage",
"build": "tsc -p tsconfig.json",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/node": "^15.6.1",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "3.3.0",
"jest": "^27.0.3",
"jest-github-actions-reporter": "^1.0.3",
"rimraf": "^3.0.2",
"semantic-release": "^17.3.0",
"ts-jest": "^27.0.2"
},
"dependencies": {
"@phenomnomnominal/tsquery": "^4.0.0",
"@rushstack/node-core-library": "^3.19.6",
"@rushstack/ts-command-line": "^4.3.13",
"cosmiconfig": "^7.0.0",
"dependency-graph": "^0.11.0",
"fast-glob": "^3.2.2",
"rxjs": "^7.1.0",
"typescript": "^4.3.2"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"master",
{
"name": "next",
"prerelease": true
}
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}