-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
111 lines (111 loc) · 2.81 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "danger-plugin-slack",
"description": "Report to Slack the result of Danger",
"author": {
"name": "Julon Lou",
"email": "contact@julonlou.com"
},
"repository": {
"type": "git",
"url": "/~https://github.com/julon/danger-plugin-slack.git"
},
"bugs": {
"url": "/~https://github.com/julon/danger-plugin-slack/issues"
},
"homepage": "/~https://github.com/julon/danger-plugin-slack#readme",
"keywords": [
"danger",
"danger-plugin",
"slack"
],
"version": "1.1.2",
"main": "dist/index.js",
"types": "types/index.d.ts",
"scripts": {
"precommit": "lint-staged",
"commit": "git-cz",
"commitmsg": "validate-commit-msg",
"build": "tsc",
"test": "jest",
"predocs": "rm -rf docs/",
"docs": "esdoc -c .esdoc.json",
"prepublish": "npm run build",
"semantic-release": "semantic-release",
"prettier": "prettier",
"prettier-write": "npm run prettier -- --parser typescript --no-semi --trailing-comma es5 --write --print-width 120",
"prettier-project": "npm run prettier-write -- 'src/**/*.{ts,tsx}'",
"lint": "tslint \"src/**/*.ts\"",
"travis-deploy-once": "travis-deploy-once"
},
"license": "MIT",
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^1.0.0",
"@semantic-release/git": "^3.0.0",
"@semantic-release/github": "^4.0.0",
"@semantic-release/npm": "^3.0.0",
"@slack/client": "^3.10.0",
"@types/jest": "^22.1.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"danger": "^3.0.5",
"husky": "^0.14.3",
"jest": "^22.0.3",
"lint-staged": "^6.0.0",
"prettier": "^1.10.2",
"semantic-release": "^12.2.2",
"travis-deploy-once": "^4.3.1",
"ts-jest": "^22.0.0",
"tslint": "^5.9.1",
"typescript": "^2.3.2",
"validate-commit-msg": "^2.12.1"
},
"optionalDependencies": {
"esdoc": "^1.0.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"tslint --fix",
"npm run prettier-write --",
"git add"
]
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(.test)\\.(ts|tsx)$",
"testPathIgnorePatterns": [
"\\.snap$",
"<rootDir>/node_modules/"
]
},
"dependencies": {},
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
],
"getLastRelease": "@semantic-release/npm",
"publish": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
}
}