forked from hull/hull-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.03 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.03 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "hull",
"version": "0.10.8",
"description": "A Node.js client for hull.io",
"main": "lib",
"repository": {
"type": "git",
"url": "https://github.com/hull/hull-node.git"
},
"homepage": "https://github.com/hull/hull-node",
"bugs": {
"url": "https://github.com/hull/hull-node/issues"
},
"author": "Romain Dardour <[email protected]>",
"license": "MIT",
"scripts": {
"test": "npm run test:lint && npm run test:units",
"test:lint": "./node_modules/.bin/eslint server",
"test:modules": "npm outdated --depth=0",
"test:units": "NODE_ENV=test ./node_modules/.bin/mocha -R spec ./tests/index",
"update": "./node_modules/.bin/updtr",
"clean": "./node_modules/.bin/rimraf lib",
"coverage": "gulp coverage",
"build": "gulp build",
"watch": "gulp watch",
"prepublish": "npm run build"
},
"dependencies": {
"JSONStream": "^1.1.2",
"body-parser": "^1.15.2",
"cache-manager": "^2.1.2",
"connect": "^3.4.1",
"csv-stream": "^0.1.3",
"del": "^2.2.1",
"express": "^4.14.0",
"jwt-simple": "^0.5.0",
"lodash": "^4.13.1",
"passport": "^0.3.2",
"raw-body": "^2.1.7",
"request": "^2.72.0",
"restler": "^3.4.0",
"sns-validator": "^0.2.1",
"winston": "^2.2.0"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-eslint": "^7.1.1",
"babel-plugin-lodash": "^3.2.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"bluebird": "^3.4.6",
"chai": "^3.5.0",
"del": "^2.2.0",
"eslint": "^3.2.2",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-load-plugins": "^1.2.0",
"gulp-mocha": "^3.0.0",
"gulp-plumber": "^1.1.0",
"isparta": "^4.0.0",
"mkdirp": "^0.5.1",
"mocha": "^3.0.0",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"updtr": "^0.2.1"
},
"nodeBoilerplateOptions": {
"mochaGlobals": [
"stub",
"spy",
"expect"
]
}
}