-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 895 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
32
33
34
{
"name": "pr-bot",
"version": "1.0.0",
"description": "",
"main": "./lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:commonjs": "tsc --target es2018 --outDir lib --module commonjs --declaration",
"build:es": "tsc --target es6 --outDir es --module es6",
"build": "npm run build:commonjs && npm run build:es",
"ts": "ts-node src/",
"prepublishOnly": "npm run build"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/request-promise-native": "^1.0.15",
"@types/jsonpath": "^0.2.0"
},
"files": [
"es",
"lib"
],
"types": "./lib/index.d.ts",
"jsnext:main": "./es/index.js",
"module": "./es/index.js",
"dependencies": {
"@slack/client": "^4.8.0",
"jsonpath": "^1.0.0",
"moment": "^2.23.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.5"
}
}