forked from WeTransfer/wt-js-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.14 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
{
"name": "@wetransfer/js-sdk",
"version": "1.2.0",
"description": "A JavaScript SDK for WeTransfer's Public API",
"main": "src/index.js",
"scripts": {
"lint": "eslint src __mocks__ __tests__",
"lint:fix": "npm run lint -- --fix",
"release": "semantic-release --no-ci",
"release:dry": "semantic-release --no-ci --dry-run",
"test": "jest",
"test:ci": "npm run test:coverage -- --bail --runInBand --verbose=false",
"test:coverage": "npm test -- --coverage",
"test:watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/WeTransfer/wt-js-sdk.git"
},
"keywords": [
"api",
"wetransfer",
"node"
],
"author": "WeTransfer folks",
"license": "MIT",
"bugs": {
"url": "https://github.com/WeTransfer/wt-js-sdk/issues"
},
"homepage": "https://github.com/WeTransfer/wt-js-sdk#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=4.0.0"
},
"dependencies": {
"async": "3.1.0",
"axios": "0.19.0",
"axios-retry": "3.1.2",
"emoji-strip": "1.0.1",
"lodash": "4.17.15",
"sanitize-filename": "1.6.3",
"winston": "3.2.1"
},
"devDependencies": {
"@semantic-release/changelog": "3.0.4",
"@semantic-release/git": "7.0.16",
"@wetransfer/eslint-config-wetransfer": "3.1.0",
"eslint": "6.6.0",
"husky": "3.1.0",
"jest": "24.9.0",
"jest-watch-typeahead": "0.4.0",
"nock": "11.4.0",
"prettier": "1.18.2",
"semantic-release": "15.13.24"
},
"resolutions": {
"cryptiles": "4.1.2",
"deep-extend": "0.6.0",
"extend": "3.0.2",
"fstream": "1.0.12",
"handlebars": "4.1.2",
"js-yaml": "3.13.1",
"lodash": "4.17.15",
"marked": "0.6.1",
"stringstream": "0.0.6"
},
"jest": {
"testEnvironment": "node",
"setupFiles": [
"./scripts/jest/setup.js"
],
"testPathIgnorePatterns": [
"<rootDir>/__tests__/fixtures/create-local-file.js",
"<rootDir>/__tests__/fixtures/create-remote-file.js"
],
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
}
}