-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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
{
"name": "stryker-git-checker",
"version": "0.1.3",
"description": "Git Checker for Stryker Mutator Javascript testing framework",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/lbtoma/stryker-git-checker.git"
},
"keywords": [
"tests",
"stryker",
"mutation",
"git",
"diff"
],
"bugs": {
"url": "https://github.com/lbtoma/stryker-git-checker/issues"
},
"engines": {
"node": ">=12"
},
"author": "Lucas Barioni Toma <[email protected]>",
"license": "Apache-2.0",
"private": false,
"scripts": {
"build": "tsc -p tsconfig-build.json",
"build:clean": "rm -rf dist/ tsconfig-build.tsbuildinfo && yarn build",
"test:unit": "jest",
"lint:fix": "yarn lint:check --write",
"lint:check": "yarn prettier --check .",
"release": "yarn build:clean && yarn publish"
},
"dependencies": {
"@stryker-mutator/api": "^5.3.0",
"typed-inject": "^3.0.0"
},
"devDependencies": {
"@types/jest": "^27.0.1",
"jest": "^27.0.6",
"prettier": "^2.3.2",
"ts-jest": "^27.0.5",
"typescript": "^4.3.5"
}
}