-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.09 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.09 KB
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
{
"name": "destiny-api-client",
"version": "0.1.1",
"description": "nodejs client for accessing the Destiny API",
"keywords": [
"destiny"
],
"main": "destiny-api.js",
"files": [
"destiny-api.js",
"requests/"
],
"dependencies": {
"lodash": "^4.17.4",
"request": "^2.79.0",
"request-promise": "^4.1.1"
},
"devDependencies": {
"acorn": "^4.0.8",
"astravel": "^0.3.13",
"astring": "^0.8.0",
"bluebird": "^3.4.7",
"chai": "^3.5.0",
"chance": "^1.0.4",
"docdash": "^0.4.0",
"glob": "^7.1.1",
"js-beautify": "^1.6.8",
"js-yaml": "^3.7.0",
"mocha": "^3.2.0",
"mocha-parallel-tests": "^1.2.5"
},
"scripts": {
"build": "node generate-request-classes.js",
"docs": "node_modules/.bin/jsdoc -c jsdoc.json",
"postdocs": "node pretty-docs.js",
"pretest": "node test/data/fetch-accounts.js",
"test": "./node_modules/.bin/mocha-parallel-tests test"
},
"repository": {
"type": "git",
"url": "https://github.com/jasoma/destiny-api"
},
"author": "Jason Maher <jason@jasonmaher.me>",
"license": "MIT"
}