-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 1.87 KB
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
{
"name": "@smartcar/auth",
"version": "2.14.1",
"description": "javascript auth sdk for the smartcar",
"main": "dist/npm/sdk.js",
"license": "MIT",
"author": "Smartcar <hello@smartcar.com> (https://smartcar.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/smartcar/javascript-sdk.git"
},
"bugs": {
"url": "https://github.com/smartcar/javascript-sdk/issues"
},
"homepage": "https://github.com/smartcar/javascript-sdk#readme",
"files": [
"dist/npm/**",
"doc/**"
],
"scripts": {
"pretest": "gulp build",
"test": "jest",
"posttest": "npm run lint -s",
"lint": "eslint . --cache",
"cover": "npm test -- --coverage",
"readme": "gulp template:readme",
"jsdoc": "jsdoc2md --example-lang js --template doc/.template.hbs --files src/sdk.js | sed 's/[ \t]*$//' > doc/README.md",
"prepare-release": "semantic-release --branches \"$(git rev-parse --abbrev-ref HEAD)\" --extends ./build/sr-configs/local.js"
},
"devDependencies": {
"@babel/core": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@semantic-release/exec": "^6.0.3",
"eslint": "^8.57.1",
"eslint-config-smartcar": "^3.0.0",
"express": "^4.21.2",
"geckodriver": "^4.5.1",
"gulp": "^4.0.2",
"gulp-awspublish": "^6.0.2",
"gulp-babel": "^8.0.0",
"gulp-rename": "^2.0.0",
"gulp-template": "^5.0.0",
"gulp-uglify": "^3.0.0",
"gulp-umd": "^2.0.0",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-environment-jsdom-global": "^4.0.0",
"jsdoc-to-markdown": "^9.1.3",
"selenium-webdriver": "^4.28.1",
"semantic-release": "^24.2.7"
},
"overrides": {
"semver": "^7.8.2",
"qs": "^6.15.2",
"cookie": "^0.7.2",
"braces": "^3.0.3",
"micromatch": "^4.0.8",
"picomatch": "^2.3.1"
},
"publishConfig": {
"access": "public"
}
}