-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.23 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@slyk/slyk-sdk-node",
"version": "0.19.1",
"description": "Slyk Node.js SDK",
"keywords": [
"sdk",
"slyk-sdk-node",
"slyk-sdk",
"slyk"
],
"homepage": "https://github.com/slykio/slyk-sdk-node",
"bugs": {
"url": "https://github.com/slykio/slyk-sdk-node/issues"
},
"license": "MIT",
"author": {
"name": "Slyk",
"email": "support@slyk.io",
"url": "https://slyk.io"
},
"main": "./dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/slykio/slyk-sdk-node.git"
},
"scripts": {
"build": "rm -rf dist/* && babel src --out-dir dist",
"changelog": "github_changelog_generator --no-issues --header-label='# Changelog' --future-release=v$npm_config_future_release",
"cover": "jest --runInBand --coverage --forceExit",
"coveralls": "npm run cover && cat ./coverage/lcov.info | coveralls",
"lint": "eslint src test",
"lint-staged": "lint-staged",
"test": "jest --runInBand --forceExit",
"test-watch": "jest --runInBand --watch --onlyChanged",
"version": "npm run build && git add -A dist"
},
"dependencies": {
"easy-http-errors": "^2.0.0",
"got": "9.6.0",
"lodash": "4.17.21",
"normalize-url": "4.5.0",
"qs": "6.9.6"
},
"devDependencies": {
"@babel/cli": "7.13.0",
"@babel/core": "7.13.1",
"@babel/node": "7.13.0",
"@babel/plugin-proposal-class-properties": "7.13.0",
"@babel/plugin-transform-runtime": "7.13.7",
"@babel/preset-env": "7.13.5",
"babel-plugin-add-module-exports": "1.0.4",
"babel-plugin-module-resolver": "4.1.0",
"coveralls": "3.1.0",
"eslint": "6.5.1",
"eslint-config-seegno": "16.0.0",
"jest": "25.5.4",
"lint-staged": "9.5.0",
"nock": "11.9.1",
"pre-commit": "^1.2.2"
},
"engines": {
"node": ">=8.12"
},
"jest": {
"coveragePathIgnorePatterns": [
"test"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"html",
"lcov",
"text"
],
"testEnvironment": "node",
"testRegex": "(test/.*\\.test.js)$"
},
"pre-commit": [
"lint-staged"
],
"lint-staged": {
"{src,migrations,test}/**/*.js": [
"eslint",
"jest --findRelatedTests --runInBand --forceExit"
]
}
}