-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathpackage.json
69 lines (69 loc) · 1.56 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
{
"name": "strava-v3",
"version": "2.2.1",
"description": "Simple wrapper for Strava v3 API",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "npx eslint *.js lib test && npx mocha test/*.js",
"lint": "npx eslint *.js lib test"
},
"repository": {
"type": "git",
"url": "https://github.com/node-strava/node-strava-v3.git"
},
"keywords": [
"strava",
"node",
"api"
],
"author": "austin brown <[email protected]> (http://austinjamesbrown.com/)",
"contributors": [
"Mark Stosberg <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/node-strava/node-strava-v3/issues"
},
"homepage": "https://github.com/node-strava/node-strava-v3",
"dependencies": {
"axios": "^1.7.7",
"json-bigint": "^1.0.0"
},
"devDependencies": {
"env-restorer": "^1.0.0",
"es6-promise": "^3.2.1",
"eslint": "^8.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"inquirer": "^7.0.0",
"mocha": "^9.2.0",
"mock-fs": "^4.10.1",
"nock": "^11.3.4",
"should": "^13.2.3",
"sinon": "^1.17.4",
"yargs": "^17.3.0"
},
"mocha": {
"globals": [
"should"
],
"timeout": 20000,
"checkLeaks": true,
"ui": "bdd",
"reporter": "spec"
},
"eslintConfig": {
"extends": "standard",
"env": {
"mocha": true,
"node": true
}
},
"engines": {
"node": ">=8.0.0"
}
}