forked from 1Password/connect-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.72 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
{
"name": "@1password/connect",
"version": "1.0.2",
"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"
},
"author": "1Password",
"license": "MIT",
"prettier": "./prettierrc.json",
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.23",
"@types/lodash.clonedeep": "^4.5.6",
"@types/slug": "^0.9.1",
"@types/vfile-message": "1.0.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"codecov": "^3.8.2",
"eslint": "^7.25.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-deprecation": "^1.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.6.5",
"eslint-plugin-no-unsanitized": "^3.1.4",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-unicorn": "^22.0.0",
"jest": "^26.6.3",
"nock": "^13.0.4",
"prettier": "^2.1.2",
"ts-jest": "^26.5.6",
"typescript": "^4.0.3",
"set-value": ">=4.0.1"
},
"dependencies": {
"axios": "^0.21.3",
"debug": "^4.3.1",
"lodash.clonedeep": "^4.5.0",
"slug": "^4.1.0"
}
}