-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
52 lines (52 loc) · 1.23 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
{
"name": "7digital-api",
"version": "1.0.0",
"description": "7digital API client for nodeJS",
"homepage": "https://github.com/7digital/7digital-api",
"repository": {
"type": "git",
"url": "git://github.com/7digital/7digital-api.git"
},
"docs": {
"url": "https://github.com/7digital/7digital-api/blob/master/README.md"
},
"bugs": {
"url": "https://github.com/7digital/7digital-api/issues"
},
"keywords": [
"api",
"nodejs",
"7digital"
],
"author": "7digital Tools Team <[email protected]>",
"license": "ISC",
"engines": [
"node >= 0.10.40"
],
"scripts": {
"integration-test": "./node_modules/.bin/mocha --recursive -R spec test-integration/",
"test": "./node_modules/.bin/mocha --recursive -R spec test/"
},
"main": "index.js",
"dependencies": {
"lodash": "~3.10.1",
"oauth": "0.9.14",
"step": "~0.0.5",
"verror": "^1.6.0",
"xml2js": "~0.4.3"
},
"devDependencies": {
"async": "^1.5.0",
"browserify": "~12.0.1",
"chai": "~3.4.1",
"docco": "~0.7.0",
"jshint": "~2.8.0",
"mocha": "~2.3.4",
"mocha-teamcity-reporter": "1.0.0",
"sinon": "~1.17.2",
"winston": "^2.1.1"
},
"optionalDependencies": {
"uuid": "^3.0.0"
}
}