-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
60 lines (60 loc) · 1.68 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": "smartcar",
"version": "0.0.0-semantic-release",
"description": "nodejs sdk for the smartcar platform",
"main": "index.js",
"author": "Smartcar <[email protected]> (https://smartcar.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/smartcar/node-sdk.git"
},
"bugs": {
"url": "https://github.com/smartcar/node-sdk/issues"
},
"homepage": "https://github.com/smartcar/node-sdk#readme",
"keywords": [
"smartcar",
"connected car"
],
"files": [
"lib",
"index.js"
],
"engines": {
"node": ">=10.13.0",
"npm": ">=8.3.0"
},
"scripts": {
"test": "npm run test:unit && npm run test:e2e",
"test:unit": "ava test/unit",
"test:e2e": "ava --timeout=120s test/end-to-end",
"test:integration": "cross-env NOCK_OFF=true npm test",
"posttest": "npm run lint -s",
"lint": "eslint . --cache",
"cover": "nyc npm run test -s",
"jsdoc": "jsdoc -c .jsdoc.json .",
"docs": "mkdir -p doc && jsdoc2md --example-lang js --template doc/.template.hbs --files .docs.js index.js lib/* | sed -e 's/[ \t]*$//' -e 's/\\[\\ '//g' -e 's/'\\ \\]//g' > doc/readme.md"
},
"dependencies": {
"bluebird": "^3.5.5",
"lodash": "^4.17.5",
"request": "^2.83.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"ava": "^4.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.9.0",
"eslint-config-smartcar": "^3.0.0",
"geckodriver": "^3.0.1",
"is-ci": "^3.0.1",
"jsdoc-to-markdown": "^7.1.1",
"nock": "^13.2.4",
"nyc": "^15.1.0",
"selenium-webdriver": "^4.1.1",
"semantic-release": "^19.0.2",
"sinon": "^15.0.3",
"uuid": "^8.3.2"
}
}