-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 1.2 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
{
"name": "ubidots-node",
"version": "1.2.9",
"description": "Unofficial Ubidots NodeJS API Client",
"main": "src/ubidots.js",
"scripts": {
"test": "$(npm bin)/mocha test --timeout 99999 --ui tdd --file test/_boot.js",
"lint": "$(npm bin)/eslint src",
"lint-staged": "$(npm bin)/lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/AlexanderC/ubidots.git"
},
"keywords": [
"IoT",
"Ubidots",
"SDK"
],
"author": "AlexanderC <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlexanderC/ubidots/issues"
},
"homepage": "https://github.com/AlexanderC/ubidots#readme",
"devDependencies": {
"chai": "^4.2.0",
"mocha": "^5.2.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.9.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"husky": "^2.3.0",
"lint-staged": "^8.1.7"
},
"dependencies": {
"axios": "^0.19.0",
"debug": "^4.1.0",
"merge-options": "^1.0.1",
"promise-retry": "^1.1.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
}
}