-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 841 Bytes
/
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
{
"name": "probot-issue-commands",
"version": "0.0.0-development",
"description":
"A Probot extension to make it easier to working with issue commands",
"main": "dist/index.js",
"repository": "https://github.com/ahmed-taj/probot-issue-commands",
"author": "Ahmed T. Ali <[email protected]>",
"license": "MIT",
"scripts": {
"prepublish": "tsc",
"test": "jest",
"semantic-release": "semantic-release"
},
"files": ["dist/*", "README.md"],
"devDependencies": {
"@types/jest": "^22.0.0",
"jest": "^22.0.4",
"ts-jest": "^22.0.0",
"ts-node": "^4.1.0",
"typescript": "^2.6.2",
"semantic-release": "^11.0.2"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": ["ts", "tsx", "js", "jsx", "json", "node"]
}
}