-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
75 lines (75 loc) · 1.66 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
{
"name": "@architectnow/cypress-testrail-reporter",
"version": "0.0.0-development",
"license": "MIT",
"author": "Chau Tran",
"main": "dist/index.js",
"module": "dist/cypress-testrail-reporter.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/ArchitectNow/cypress-testrail-reporter.git"
},
"keywords": ["cypress", "testrail", "reporter", "architectnow"],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"lint": "tsdx lint src && lint-staged",
"commit": "git-cz",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"prettier": {
"printWidth": 120,
"semi": true,
"singleQuote": true,
"trailingComma": "all"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"{src}/**/*.ts": [
"prettier --write",
"git add"
]
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/jest": "25.1.3",
"@types/mocha": "7.0.2",
"@types/node": "13.7.4",
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"commitizen": "4.0.3",
"cz-conventional-changelog": "3.1.0",
"lint-staged": "10.0.8",
"semantic-release": "^17.0.0",
"husky": "4.2.3",
"tsdx": "0.12.2",
"tslib": "1.11.1",
"typescript": "3.7.2"
},
"dependencies": {
"axios": "0.19.2",
"chalk": "3.0.0",
"date-fns": "2.11.1",
"mocha": "7.1.1"
}
}