-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
93 lines (93 loc) · 2.52 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": "ts-test-decorators",
"version": "0.0.6",
"description": "Write your tests in a Java-like annotation-driven manner via JS decorators.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"keywords": [
"mocha",
"typescript",
"allure",
"decorator"
],
"author": "Sergey Korol",
"license": "Apache-2.0",
"repository": "https://github.com/sskorol/ts-test-decorators",
"bugs": "https://github.com/sskorol/ts-test-decorators/issues",
"homepage": "https://github.com/sskorol/ts-test-decorators#README.md",
"scripts": {
"build": "tsc",
"clean": "rimraf ./dist ./allure-results ./.allure-report ./coverage ./.nyc_output",
"test": "run-s clean tslint && tsc -p ./tests/tsconfig.json && nyc mocha",
"generate-report": "allure generate ./allure-results -o ./.allure-report --clean",
"serve-report": "allure serve ./allure-results",
"allure": "run-s generate-report serve-report",
"coverage": "codecov",
"tslint-fix": "tslint --fix --project .",
"tslint": "tslint ./src/**/*.ts ./tests/**/*.ts",
"precommit": "lint-staged",
"postcommit": "git update-index -g"
},
"peerDependencies": {
"@testdeck/mocha": "^0.1.0",
"allure-mocha": "2.0.0-beta.7",
"allure-js-commons": "2.0.0-beta.7"
},
"dependencies": {
"allure-js-commons": "2.0.0-beta.7"
},
"devDependencies": {
"@testdeck/mocha": "^0.1.0",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.4",
"allure-mocha": "2.0.0-beta.7",
"allure-commandline": "^2.13.0",
"chai": "^4.2.0",
"codecov": "^3.6.5",
"dotenv": "^8.2.0",
"fs-jetpack": "^2.2.3",
"glob": "^7.1.6",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"mocha": "^7.1.2",
"mocha-multi": "^1.1.3",
"npm-run-all": "^4.1.5",
"nyc": "^15.0.1",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"ts-node": "^8.9.1",
"tsconfig-paths": "^3.9.0",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-eslint-rules": "^5.4.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^3.8.3"
},
"nyc": {
"check-coverage": true,
"lines": 95,
"statements": 95,
"functions": 95,
"branches": 75,
"extension": [
".ts"
],
"exclude": [
"tests/**/*.*",
"**/*.d.ts"
],
"reporter": [
"lcov",
"text"
],
"all": true
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --parser typescript --write",
"git add"
]
}
}