-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.79 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
{
"name": "typed-slack",
"version": "0.1.4",
"description": "Type-safe slack client for TypeScript.",
"main": "out/typed-slack.js",
"types": "out/typed-slack.d.ts",
"scripts": {
"test": "jest",
"build": "tslint -p tslint.json && tsc -d",
"doc": "yarn run typedoc --exclude '**/test/**/*.ts' --excludeNotExported --out docs src",
"publish:patch": "yarn run doc && git commit -am 'Update docs' && yarn run build && npm version patch && git push origin master && git push origin --tags && npm publish --access=public",
"publish:minor": "yarn run doc && git commit -am 'Update docs' && yarn run build && npm version minor && git push origin master && git push origin --tags && npm publish --access=public",
"publish:major": "yarn run doc && git commit -am 'Update docs' && yarn run build && npm version major && git push origin master && git push origin --tags && npm publish --access=public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/starhoshi/typed-slack.git"
},
"keywords": [
"tsd",
"DefinitelyTyped",
"slack",
"typescript"
],
"author": "star__hoshi",
"license": "MIT",
"bugs": {
"url": "https://github.com/starhoshi/typed-slack/issues"
},
"homepage": "https://github.com/starhoshi/typed-slack#readme",
"jest": {
"transform": {
"\\.ts": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "src/test/.*.test.ts",
"moduleFileExtensions": [
"ts",
"js",
"json"
]
},
"dependencies": {
"request": "^2.83.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"@types/jest": "^22.1.2",
"@types/request-promise": "^4.1.41",
"jest": "^22.2.2",
"ts-jest": "^22.0.3",
"tslint": "^5.9.1",
"typedoc": "^0.10.0",
"typescript": "^2.7.1"
}
}