This repository has been archived by the owner on Jan 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
84 lines (84 loc) · 2.08 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": "habitica",
"version": "4.0.0",
"description": "A node wrapper for the habitica api",
"main": "./index.js",
"scripts": {
"docs": "npm run docs:clean && jsdoc --configure .jsdoc.conf.json",
"watch": "npm-watch",
"docs:deploy": "npm run docs && node tasks/deploy-docs.js",
"docs:clean": "rm -rf docs/*.html",
"lint": "standard --verbose | snazzy",
"test:support:drop-db": "node tasks/drop-db.js",
"test:support:server": "node tasks/start-server",
"test": "npm run lint && npm run test:unit && npm run test:integration-with-server",
"test:integration": "mocha test/integration",
"test:integration-with-server": "npm run test:support:drop-db && node tasks/start-server npm run test:integration",
"test:unit": "mocha test/unit"
},
"watch": {
"docs": [
"index.js",
"lib/*.js"
]
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/crookedneighbor/habitica-node.git"
},
"keywords": [
"habitica",
"habitrpg"
],
"author": "Blade Barringer <[email protected]>",
"contributors": [
{
"name": "Max Buras",
"email": "[email protected]"
},
{
"name": "Nick Tomlin",
"email": "[email protected]"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/crookedneighbor/habitica-node/issues"
},
"homepage": "https://github.com/crookedneighbor/habitica-node#readme",
"devDependencies": {
"chai": "^3.2.0",
"chai-as-promised": "^5.1.0",
"gh-pages": "^0.11.0",
"jsdoc": "^3.4.0",
"kerberos": "0.0.22",
"minami": "^1.1.1",
"mocha": "^3.0.2",
"mongodb": "^2.1.3",
"nock": "^9.0.0",
"npm-watch": "^0.1.6",
"require-again": "^2.0.0",
"snazzy": "^4.0.0",
"standard": "^10.0.0",
"uuid": "^3.0.0"
},
"dependencies": {
"superagent": "^3.5.2"
},
"standard": {
"globals": [
"$",
"after",
"afterEach",
"before",
"beforeEach",
"context",
"describe",
"expect",
"it",
"xcontext",
"xdescribe",
"xit"
]
}
}