-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
56 lines (56 loc) · 1.71 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
{
"name": "@smartcar/auth",
"version": "2.11.0",
"description": "javascript auth sdk for the smartcar",
"main": "dist/npm/sdk.js",
"license": "MIT",
"author": "Smartcar <[email protected]> (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.18.2",
"@babel/preset-env": "^7.18.2",
"@semantic-release/exec": "^6.0.3",
"eslint": "^8.16.0",
"eslint-config-smartcar": "^3.0.0",
"express": "^4.18.1",
"geckodriver": "^3.0.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": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"jest-environment-jsdom-global": "^3.1.2",
"jsdoc-to-markdown": "^7.1.1",
"selenium-webdriver": "^4.0.0-alpha.7",
"semantic-release": "^19.0.2"
},
"publishConfig": {
"access": "public"
}
}