-
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
{
"name": "slack-message-parser",
"version": "0.0.1",
"description": "Parser for Slack message",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "tslint -c tslint.json 'src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pocka/slack-message-parser.git"
},
"keywords": [
"slack"
],
"author": "pocka",
"license": "MIT",
"bugs": {
"url": "https://github.com/pocka/slack-message-parser/issues"
},
"homepage": "https://github.com/pocka/slack-message-parser#readme",
"devDependencies": {
"@types/jest": "^23.3.2",
"husky": "^1.0.0-rc.14",
"jest": "^23.6.0",
"lint-staged": "^7.2.2",
"prettier": "^1.14.2",
"ts-jest": "^23.1.4",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"yarn": "^1.9.4"
},
"dependencies": {
"typescript": "^3.0.3"
},
"sideEffects": false,
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts",
"!node_modules/**"
],
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"testRegex": "/tests/.*\\.ts$",
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
],
"moduleNameMapper": {
"~/(.*)": "<rootDir>/src/$1"
}
},
"lint-staged": {
"*.{ts,md}": [
"prettier --write",
"git add"
]
},
"prettier": {
"semi": false,
"singleQuote": true
}
}