This repository has been archived by the owner on Apr 8, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathpackage.json
62 lines (62 loc) · 1.77 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
{
"name": "slack",
"version": "11.0.2",
"description": "Slack API client written in JS",
"main": "index",
"types": "./slack.d.ts",
"browser": {
"./test/_env.js": "./test/_env-browser.js",
"./src/_exec.js": "./src/_exec-browser.js"
},
"nyc": {
"exclude": [
"src/_exec-electron.js",
"test"
]
},
"scripts": {
"standalone": "browserify . --im --node --standalone slack > slack.node.js && jsmin -o slack.node.min.js slack.node.js",
"start": "./scripts/repl",
"test": "tape test/*-test.js | tap-spec",
"cov": "nyc tape test/*-test.js",
"btest": "./scripts/browser-test | browser-run | tap-spec",
"etest": "./scripts/electron-test | browser-run --node | tap-spec",
"generate": "./scripts/generate-api-json > src/api.json && ./scripts/generate-readme && ./scripts/generate-types",
"pkg": "./scripts/browser-pkg && jsmin -o slack.min.js slack.js && jsmin -o slack-testing.min.js slack-testing.js",
"rc": "npm version prerelease --preid RC"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smallwins/slack.git"
},
"keywords": [
"slack",
"api",
"client"
],
"author": "Brian LeRoux <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/smallwins/slack/issues"
},
"homepage": "https://github.com/smallwins/slack#readme",
"devDependencies": {
"async": "^3.1.0",
"browser-run": "^6.0.0",
"browserify": "^16.5.0",
"chalk": "^3.0.0",
"cheerio": "^0.22.0",
"envify": "^4.1.0",
"glob": "^7.1.6",
"jsmin": "^1.0.1",
"mustache": "^3.1.0",
"node-env-file": "^0.1.8",
"nyc": "^15.0.1",
"request": "^2.88.0",
"tap-spec": "^5.0.0",
"tape": "^5.0.1"
},
"dependencies": {
"tiny-json-http": "^7.1.2"
}
}