-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.48 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
{
"name": "@epicurus/epicurus",
"version": "0.0.1",
"description": "returns modified files based on diff commits",
"main": "dist/index.js",
"directories": {
"src": "src"
},
"bin": {
"epicurus": "dist/index.js"
},
"dependencies": {
"commander": "^8.0.0",
"isomorphic-git": "^1.4.0",
"path": "^0.12.7",
"typescript": "^3.9.5"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^5.1.3",
"jest": "^26.0.1",
"lint-staged": "^10.5.4",
"prettier": "^2.2.0",
"ts-jest": "^26.1.0",
"ts-node": "^9.1.1"
},
"scripts": {
"test": "jest",
"lint": "npx eslint --fix src/**/*.ts && prettier --check .",
"build": "tsc -p .",
"format": "prettier --write .",
"postinstall": "husky install",
"local": "npm i -g && epicurus",
"start": "npx ts-node src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/epicurus-tech/epicurus.git"
},
"keywords": [
"mutation-tests",
"git",
"diff-based"
],
"author": "Jessica de Lima Fileto",
"license": "MIT",
"bugs": {
"url": "https://github.com/epicurus-tech/epicurus/issues"
},
"homepage": "https://github.com/epicurus-tech/epicurus#readme"
}