-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
84 lines (84 loc) · 1.94 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
{
"name": "skype-http",
"description": "Unofficial Skype API for Node.js via HTTP",
"version": "0.0.15",
"license": "MIT",
"main": "dist/lib/index",
"types": "dist/lib/index.d.ts",
"repository": {
"type": "git",
"url": "git://github.com/ocilo/skype-http.git"
},
"scripts": {
"prepare": "gulp all:tsconfig.json && gulp :tslint.json && gulp dist",
"prestart": "gulp example:build",
"start": "node --experimental-modules build/example/example/main.js",
"pretest": "gulp :lint && gulp lib:build",
"test": "gulp test",
"test-online": "OCILO_TEST_ONLINE=true npm test",
"prepublishOnly": "npm run test-online",
"lint": "gulp :lint:fix"
},
"pre-commit": {
"run": [
"test"
]
},
"keywords": [
"Skype",
"Skype-Web",
"Skype-HTTP"
],
"dependencies": {
"@types/cheerio": "^0.22.7",
"@types/form-data": "^2.2.1",
"@types/lodash": "^4.14.102",
"@types/request": "^2.47.0",
"@types/tough-cookie": "^2.3.2",
"async-file": "^2.0.2",
"big-integer": "^1.6.26",
"bluebird": "^3.5.1",
"cheerio": "^1.0.0-rc.2",
"incident": "^3.1.1",
"js-sha256": "^0.9.0",
"kryo": "^0.6.1",
"lodash": "^4.17.5",
"request": "^2.83.0",
"tough-cookie": "^2.3.3"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/minimist": "^1.2.0",
"@types/mocha": "^2.2.48",
"@types/node": "^9.4.6",
"chai": "^4.1.2",
"del": "^3.0.0",
"fs-extra": "^5.0.0",
"glob": "^7.1.2",
"gulp": "^4.0.0",
"gulp-cli": "^2.0.1",
"minimist": "^1.2.0",
"mocha": "^5.0.1",
"pre-commit": "^1.2.2",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"turbo-gulp": "^0.16.2",
"typescript": "2.7.0-rc"
},
"nyc": {
"include": [
"build/test/lib/**/*.js",
"build/test/lib/**/*.mjs"
],
"reporter": [
"text",
"html"
],
"extension": [
".mjs"
]
},
"@std/esm": {
"esm": "cjs"
}
}