forked from kusold/habitrpg-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 972 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
36
37
38
39
40
41
{
"name": "habitrpg-api",
"version": "1.0.2",
"description": "A Javascript wrapper for the HabitRPG api.",
"main": "lib/apiv3.js",
"scripts": {
"test": "./node_modules/.bin/mocha tests/*",
"lint": "./node_modules/.bin/gulp lint"
},
"keywords": [
"habitrpg"
],
"author": "Mike Kusold",
"repository": {
"type": "git",
"url": "https://github.com/Kusold/habitrpg-api"
},
"bugs": {
"url": "https://github.com/Kusold/habitrpg-api/issues",
"email": "hello@mikekusold.com"
},
"license": "GPL v3",
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"chai": "~1.9.1",
"mocha": "~1.18.2",
"underscore": "~1.6.0",
"gulp": "~3.5.6",
"gulp-jshint": "~1.5.1",
"jshint-stylish": "~0.1.5",
"gulp-mocha": "~0.4.1",
"gulp-notify": "~1.2.4",
"habitrpg": "git://github.com/HabitRPG/habitrpg.git#develop"
},
"dependencies": {
"superagent": "~0.17.0",
"lodash": "~2.4.1"
}
}