-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 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
{
"name": "slack-ts",
"version": "1.0.0",
"description": "A Slack API written in TypeScript",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/delasteve/slack-ts"
},
"bugs": {
"url": "https://github.com/delasteve/slack-ts/issues"
},
"author": {
"name": "Stephen Cavaliere",
"email": "stephencavaliere@gmail.com",
"url": "https://stephencavaliere.io"
},
"scripts": {
"clean": "ts-node scripts/clean-dist.ts",
"lint": "tslint \"src/**/*.ts\" --project tsconfig.json --type-check",
"generate": "ts-node scripts/index.ts",
"prebuild": "npm run generate",
"build": "tsc --noUnusedLocals"
},
"dependencies": {},
"devDependencies": {
"@types/cheerio": "0.17.31",
"@types/del": "2.2.31",
"@types/handlebars": "^4.0.31",
"@types/mkdirp": "^0.3.29",
"change-case": "^3.0.0",
"cheerio": "0.22.0",
"del": "2.2.2",
"got": "6.6.3",
"handlebars": "^4.0.6",
"mkdirp": "^0.5.1",
"ts-node": "2.0.0",
"tslint": "4.2.0",
"typescript": "2.1.4"
}
}