-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
39 lines (39 loc) · 839 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
{
"name": "dogeapi",
"description": "NodeJS module for https://dogeapi.com/",
"version": "2.0.1",
"maintainers": [
{
"name": "Adam Schodde",
"email": "sparky1010+github@gmail.com",
"web": "http://www.quailcity.com"
}
],
"dependencies": {
"request": "~2.33.0",
"validator": "~3.2.0"
},
"devDependencies": {
"jasmine-node-karma": "~1.6.1"
},
"repository": [
{
"type": "git",
"url": "https://github.com/brutalhonesty/dogeapi.js.git"
}
],
"licenses": [
{
"name": "MIT",
"url": "http://www.tldrlegal.com/license/mit-license"
}
],
"main": "src/index.js",
"engines": {
"node": ">=0.8.0"
},
"scripts": {
"install": "cp src/settings.js.template src/settings.js",
"test": "./node_modules/.bin/jasmine-node-karma test/"
}
}