-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.27 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.27 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
{
"name": "hull-client",
"version": "2.0.4",
"description": "A barebones Node.js API client for hull.io",
"main": "lib",
"repository": {
"type": "git",
"url": "https://github.com/hull/hull-client-node.git"
},
"homepage": "https://github.com/hull/hull-client-node",
"bugs": {
"url": "https://github.com/hull/hull-client-node/issues"
},
"author": "Romain Dardour <romain@hull.io>",
"license": "MIT",
"scripts": {
"test": "npm run test:lint && npm run test:flow && npm run test:unit && npm run test:integration",
"test:lint": "eslint src && documentation lint src",
"test:dependencies": "npm outdated --depth=0",
"test:unit": "NODE_ENV=test mocha --require babel-register --exit -R spec ./test/unit/** ./test/unit/*",
"test:integration": "NODE_ENV=test mocha --require babel-register --exit -R spec ./test/integration/* ./test/integration/**",
"test:flow": "flow check",
"clean": "rimraf lib",
"build": "npm run clean && babel src -d lib && npm run documentation",
"prepublish": "npm run build",
"documentation": "documentation build src -f md -o API.md --access public --markdownToc=false --config documentation.yml",
"precommit": "npm run documentation && git add API.md"
},
"dependencies": {
"jwt-simple": "^0.5.0",
"lodash": "^4.17.5",
"superagent": "^3.8.3",
"urijs": "^1.18.7",
"uuid": "^3.0.1",
"winston": "^2.2.0"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.24.1",
"babel-eslint": "^8.2.2",
"babel-plugin-transform-flow-comments": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-register": "^6.26.0",
"bluebird": "^3.5.1",
"chai": "^4.1.2",
"documentation": "^6.1.0",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-flowtype-errors": "^3.5.1",
"eslint-plugin-import": "^2.9.0",
"flow-bin": "^0.71.0",
"flow-typed": "^2.4.0",
"husky": "^0.14.3",
"isparta": "^4.0.0",
"minihull": "0.0.7",
"mkdirp": "^0.5.1",
"mocha": "^5.0.4",
"rimraf": "^2.6.2",
"sinon": "^4.4.5",
"sinon-chai": "^3.0.0"
},
"nodeBoilerplateOptions": {
"mochaGlobals": [
"stub",
"spy",
"expect"
]
}
}