This repository has been archived by the owner on Oct 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.62 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "withings-toolbox",
"version": "0.4.0",
"description": "This is a withings toolbox to handle their API",
"main": "dist/index.js",
"files": [
"dist"
],
"author": "Matthieu Rondeau <[email protected]>",
"license": "MIT",
"keywords": [
"withings",
"toolbox"
],
"repository": "",
"bugs": "",
"scripts": {
"build": "gulp babel",
"codacy": "cat ./coverage/lcov.info | ./node_modules/.bin/codacy-coverage",
"doc": "gulp doc",
"lint": "gulp lint",
"prepush": "gulp lint && NODE_ENV=test gulp test",
"prepublish": "gulp babel",
"test": "NODE_ENV=test gulp test"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.0",
"chai-url": "^1.0.4",
"codacy-coverage": "^2.0.2",
"eslint-config-airbnb-base": "^11.3.1",
"eslint-plugin-import": "^2.7.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-babel-istanbul": "^1.6.0",
"gulp-esdoc": "^0.4.1",
"gulp-eslint": "^4.0.0",
"gulp-inject-modules": "^1.0.0",
"gulp-mocha": "^3.0.1",
"husky": "^0.14.3",
"mocha-lcov-reporter": "^1.3.0",
"rimraf": "^2.6.1"
},
"babel": {
"presets": [
"es2015",
"stage-2"
],
"plugins": [
"add-module-exports"
]
},
"dependencies": {
"bluebird": "^3.5.0",
"build-url": "^1.0.9",
"crypto": "^0.0.3",
"joi": "^10.6.0",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"querystring": "^0.2.0",
"randomstring": "^1.1.5"
}
}