forked from blackflux/slack-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.41 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "slack-sdk",
"version": "0.0.0-development",
"description": "Basic Slack Api SDK",
"main": "lib/index.js",
"dependencies": {
"json-stable-stringify": "1.0.1",
"lru-cache": "5.1.1"
},
"peerDependencies": {
"request": "^2.88.0",
"request-promise-native": "^1.0.5"
},
"devDependencies": {
"@babel/cli": "7.4.3",
"@babel/core": "7.4.3",
"@babel/plugin-proposal-object-rest-spread": "7.4.3",
"@babel/register": "7.4.0",
"@blackflux/eslint-plugin-rules": "1.0.2",
"@blackflux/robo-config-plugin": "1.3.2",
"babel-eslint": "10.0.1",
"chai": "4.2.0",
"coveralls": "3.0.3",
"eslint": "5.16.0",
"js-gardener": "2.0.2",
"nock": "10.0.6",
"nyc": "13.3.0",
"request": "2.88.0",
"request-promise-native": "1.0.7",
"semantic-release": "15.13.3"
},
"scripts": {
"clean": "rm -rf lib",
"build": "npx babel src --out-dir lib --source-maps inline --copy-files --include-dotfiles",
"build-clean": "npm run clean && npm run build",
"test-simple": "nyc mocha \"./test/**/*.spec.js\"",
"test": "npm run clean && npm run gardener && npm run test-simple",
"coveralls": "node ./node_modules/coveralls/bin/coveralls.js < ./coverage/lcov.info",
"semantic-release": "npm run build-clean && npx semantic-release",
"gardener": "node gardener"
},
"keywords": [
"slack",
"api",
"sdk",
"cmd",
"cli"
],
"author": "Lukas Siemon",
"license": "MIT",
"nyc": {
"tempDir": "./coverage/.nyc_output",
"report-dir": "./coverage",
"check-coverage": true,
"per-file": false,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"include": [
"**/*.js"
],
"reporter": [
"lcov",
"text-summary"
],
"require": [
"@babel/register"
],
"extension": [],
"cache": true,
"all": true,
"babel": true,
"exclude": [
"gardener.js",
"node_modules/*",
"coverage/*",
"lib/*"
]
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/blackflux/slack-sdk/blob/master/LICENSE"
}
],
"homepage": "https://github.com/blackflux/slack-sdk#readme",
"engines": {
"node": ">= 8.10"
},
"repository": {
"type": "git",
"url": "https://github.com/blackflux/slack-sdk.git"
},
"bugs": {
"url": "https://github.com/blackflux/slack-sdk/issues"
},
"files": [
"lib"
]
}