forked from bnmrrs/kik-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.37 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
{
"name": "@kikinteractive/kik",
"version": "2.2.1",
"description": "Kik bot API for Node.js",
"main": "index.js",
"engines": {
"node": ">=5",
"npm": ">=3"
},
"keywords": [
"kik",
"api",
"bot"
],
"license": "MIT",
"scripts": {
"lint": "jscs index.js lib/*.js test/*.js && jshint index.js lib/*.js test/*.js",
"test": "mocha",
"doc": "./node_modules/.bin/jsdoc2md --src index.js lib/*.js -t README.handlebars > README.md",
"cover": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec",
"upload_cover": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/kikinteractive/kik-node"
},
"devDependencies": {
"coveralls": "^2.11.8",
"jscs": "2.9.0",
"istanbul": "^0.4.1",
"jsdoc": "3.4.x",
"jsdoc-to-markdown": "^1.3.3",
"jshint": "2.9.x",
"mocha": "^2.3.4",
"mocha-lcov-reporter": "^1.0.0",
"nock": "6.0.x",
"should": "1.2.x",
"supertest": "1.1.x"
},
"dependencies": {
"request-promise": "1.0.2"
}
}