-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 970 Bytes
/
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
{
"name": "survarium-api-client",
"version": "0.0.9",
"description": "survarium game api client",
"main": "index.js",
"scripts": {
"test": "tape test tests/**/*.js",
"deps": "npm i && (cd server && npm run deps)",
"doc": "jsdoc -c .jsdoc.json",
"doc-pages": "rm -rf ./docs && npm run doc && git add docs && git commit -am 'JSDoc up' && git push -f origin gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vaseker/survarium-api-client.git"
},
"keywords": [
"survarium"
],
"author": "Dmitry Vasilyev <vaseker@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vaseker/survarium-api-client/issues"
},
"homepage": "https://github.com/vaseker/survarium-api-client#readme",
"dependencies": {
"bluebird": "^3.1.1",
"debug": "^2.2.0",
"got": "^5.2.1",
"parse-json": "^2.2.0"
},
"devDependencies": {
"tap-spec": "^4.1.1",
"tape": "^4.2.2"
}
}