-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
66 lines (66 loc) · 1.56 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
{
"name": "danger-plugin-jest",
"version": "0.0.0-development",
"description": "Danger plugin for Jest",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"precommit": "lint-staged",
"prepush": "npm run test",
"commitmsg": "validate-commit-msg",
"build": "tsc -p tsconfig.json",
"lint": "eslint 'src/**/*.ts'",
"test": "jest",
"prepublish": "npm run build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/macklinu/danger-plugin-jest.git"
},
"keywords": [
"danger",
"danger-plugin",
"jest"
],
"author": "Macklin Underdown <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/macklinu/danger-plugin-jest/issues"
},
"homepage": "https://github.com/macklinu/danger-plugin-jest#readme",
"dependencies": {
"strip-ansi": "^4.0.0"
},
"devDependencies": {
"@types/jest": "^24.0.15",
"@types/node": "^8.0.37",
"danger": "^9.0.3",
"eslint": "^6.0.1",
"eslint-config-macklinu": "^2.0.1",
"husky": "^0.14.3",
"jest": "^24.8.0",
"lint-staged": "^4.2.3",
"prettier": "^1.18.2",
"semantic-release": "^6.3.6",
"ts-jest": "^24.0.2",
"typescript": "^3.5.3",
"validate-commit-msg": "^2.12.1"
},
"jest": {
"preset": "ts-jest"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --write",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
}
}