-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
51 lines (51 loc) · 1.59 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
{
"name": "@1password/connect",
"version": "1.4.1",
"homepage": "https://1password.com/secrets/",
"repository": "https://github.com/1Password/connect-sdk-js",
"description": "JavaScript/Typescript SDK for 1Password Connect",
"main": "dist/index.js",
"files": [
"dist/"
],
"scripts": {
"prepublishOnly": "npm run test && npm run lint",
"prepare": "npm run build",
"test": "jest",
"test:coverage": "npx jest --ci --coverage",
"build": "tsc",
"lint": "eslint --ext .ts",
"watch": "tsc --watch"
},
"author": "1Password",
"license": "MIT",
"prettier": "./prettierrc.json",
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.10",
"@types/lodash.clonedeep": "^4.5.9",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"codecov": "^3.8.3",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsdoc": "^46.9.0",
"eslint-plugin-no-unsanitized": "^4.0.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-unicorn": "^49.0.0",
"jest": "^29.7.0",
"nock": "^13.3.8",
"prettier": "^3.1.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.2"
},
"dependencies": {
"axios": "^1.6.2",
"debug": "^4.3.4",
"lodash.clonedeep": "^4.5.0",
"slugify": "^1.6.6",
"uuid": "^9.0.1"
}
}