forked from caplinked/caplinked-api-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.26 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.26 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
46
47
48
49
50
51
52
53
54
55
56
{
"name": "caplinked-api-node",
"author": "Caplinked <development@caplinked.com>",
"version": "1.1.1",
"description": "A Caplinked API SDK for Node.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/caplinked/caplinked-api-node.git"
},
"engines": {
"node": ">=0.10"
},
"main": "./src",
"contributors": [
{
"name": "Arons Lee",
"email": "arons@caplinked.com"
},
{
"name": "William Carron",
"email": "wcarron@caplinked.com"
}
],
"keywords": [
"caplinked",
"api",
"secure",
"sdk",
"client",
"client library"
],
"dependencies": {
"crypto-js": "^3.1.9-1",
"es6-promise": "^3.1.2",
"mime": "https://registry.npmjs.org/mime/-/mime-1.3.4.tgz",
"superagent": "^1.8.3",
"underscore": "^1.8.3"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"eslint": "^2.7.0",
"gh-pages": "^0.11.0",
"ink-docstrap": "^1.2.1",
"jsdoc": "^3.5.5",
"mocha": "^2.4.5",
"nock": "^9.0.2",
"sinon": "^1.17.3"
},
"scripts": {
"lint": "eslint src",
"test": "npm run lint && mocha 'test/*.js' && mocha 'test/unit/*.js'",
"jsdoc": "jsdoc --readme ./jsdoc.md ./src ./src/resources -d docs"
}
}