forked from ts-arch/ts-arch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 2.84 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 2.84 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "tsarch",
"version": "0.0.0-development",
"description": "",
"keywords": [],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"author": "mrpatpat <adrian.endrich@googlemail.com>",
"repository": {
"type": "git",
"url": "https://github.com/ts-arch/ts-arch.git"
},
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"lint": "tslint -t codeFrame --project tsconfig.json 'src/**/*.ts' 'test/**/*.ts'",
"clean": "rimraf dist",
"prebuild": "rimraf dist",
"build": "tsc && typedoc --out docs --target es6 --theme minimal --mode file src",
"format": "prettier --ignore-path .gitignore --write '**/*.ts*'",
"format:check": "prettier --ignore-path .gitignore --check '**/*.ts*'",
"test": "jest --no-cache",
"test:watch": "jest --watch --no-cache",
"test:clear": "jest --clearCache",
"test:prod": "npm run lint && npm run test -- --coverage --no-cache",
"deploy-docs": "ts-node tools/gh-pages-publish",
"commit": "git-cz",
"commitmsg": "validate-commit-msg",
"semantic-release": "semantic-release --branches main",
"travis-deploy-once": "travis-deploy-once"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"validate-commit-msg": {
"types": "conventional-commit-types",
"helpMessage": "Use \"npm run commit\" instead, we use conventional-changelog format :) (https://github.com/commitizen/cz-cli)"
}
},
"jest": {
"testURL": "http://localhost/",
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/(test|src)/.*\\.(test|spec))\\.(ts|tsx)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 70,
"functions": 70,
"lines": 70,
"statements": 70
}
},
"collectCoverage": true
},
"prettier": {
"printWidth": 100,
"trailingComma": "none",
"tabWidth": 2,
"semi": false,
"singleQuote": false
},
"devDependencies": {
"@types/jest": "^23.0.0",
"@types/node": "^10.17.28",
"colors": "^1.1.2",
"commitizen": "^2.9.6",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.0.0",
"jest": "^23.0.0",
"lint-staged": "^7.2.0",
"lodash.camelcase": "^4.3.0",
"prettier": "^2.0.5",
"prompt": "^1.0.0",
"recast": "^0.16.1",
"replace-in-file": "^3.0.0-beta.2",
"rimraf": "^2.6.1",
"semantic-release": "^19.0.3",
"travis-deploy-once": "^5.0.1",
"ts-jest": "^23.10.5",
"ts-node": "^8.10.1",
"tslib": "^1.9.3",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.14.0",
"tslint-config-standard": "^7.1.0",
"typedoc": "^0.17.8",
"validate-commit-msg": "^2.12.2"
},
"dependencies": {
"@zerollup/ts-helpers": "^1.7.18",
"fs": "0.0.1-security",
"path": "^0.12.7",
"plantuml-parser": "0.0.16",
"typescript": "^3.8.3",
"walk-sync": "^2.2.0"
}
}