forked from macklinu/danger-plugin-jest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.13 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
{
"name": "@oeph/danger-plugin-jest",
"version": "0.1.2",
"description": "Danger plugin for Jest",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "eslint ./src/**/*.ts",
"test": "jest",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/oeph/danger-plugin-jest.git"
},
"keywords": [
"danger",
"danger-plugin",
"jest"
],
"author": "Philipp Oehme <me@philippoeh.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/oeph/danger-plugin-jest/issues"
},
"homepage": "https://github.com/oeph/danger-plugin-jest#readme",
"dependencies": {
"bbs-code-insights": "^0.0.1",
"strip-ansi": "^4.0.0"
},
"devDependencies": {
"@types/jest": "^24.0.25",
"@types/node": "^8.0.37",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"danger": "^10.6.0",
"eslint": "^7.27.0",
"jest": "^24.8.0",
"ts-jest": "^26.4.4",
"typescript": "^4.2.4"
},
"jest": {
"preset": "ts-jest"
}
}