-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
60 lines (60 loc) · 1.52 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
{
"name": "node-etsy-client",
"version": "2.0.0",
"description": "node-etsy-client",
"main": "./lib/export.js",
"types": "./lib/export.d.ts",
"type": "module",
"scripts": {
"audit": "npm audit&&npm outdated --depth=3",
"setup": "npm install -g c8",
"testV3": "c8 --reporter text --reporter=lcov --lines 66 mocha tests/v3/*.test.js",
"simpleTest": "mocha tests/mytest.js",
"wip3": "mocha --timeout 120000 tests/manual/tmpV3ListingActive.dontpush.test.js",
"variation": "mocha --timeout 120000 tests/manual/tmpV3Variation.dontpush.test.js",
"test": "mocha --timeout 120000 tests/v3/*.test.js",
"manual": "mocha tests/manual/*.test.js",
"manualV3": "mocha tests/v3/un*.test.js",
"ci-test": "c8 npm run test"
},
"private": false,
"author": "Boly38 <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/creharmony/node-etsy-client.git"
},
"bugs": {
"url": "https://github.com/creharmony/node-etsy-client/issues"
},
"keywords": [
"node",
"etsy",
"rest",
"api",
"client"
],
"copyright": {
"title": "node-etsy-client",
"years": [
2021,
2022
],
"author": "Brice Vandeputte"
},
"dependencies": {
"axios": "^1.1.3",
"query-string": "^7.1.1",
"susi-rali": "^0.2.3",
"winston": "^3.8.2"
},
"devDependencies": {
"chai": "^4.3.6",
"mocha": "^10.1.0",
"npm-force-resolutions": "^0.0.10"
},
"resolutions": {},
"jshintConfig": {
"esversion": 6
}
}