-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
55 lines (55 loc) · 1.29 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
{
"name": "node-orangedata",
"version": "1.2.8",
"description": "Node.js integration for OrangeData service",
"license": "MIT",
"main": "lib",
"engines": {
"node": ">=8"
},
"repository": {
"type": "git",
"url": "git@github.com:orangedata-official/node-orangedata.git"
},
"bugs": {
"url": "https://github.com/orangedata-official/node-orangedata/issues"
},
"author": {
"name": "Sergey Kunin",
"email": "sk@stapps.ru",
"url": "https://github.com/orangedata-official"
},
"files": [
"config",
"examples",
"lib"
],
"scripts": {
"test": "node examples/index",
"postversion": "git push && git push --tags",
"lint": "eslint --ignore-path .gitignore ."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": "eslint --ignore-path .gitignore --color"
},
"dependencies": {
"request": "^2.88.0",
"request-promise-native": "^1.0.8",
"validator": "^13.6.0"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"eslint": "^6.6.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"husky": "^3.0.9",
"lint-staged": "^9.4.2"
}
}