forked from 1Password/op-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.79 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
{
"name": "@1password/op-js",
"version": "0.1.9",
"description": "A typed JS wrapper for the 1Password CLI",
"main": "./dist/index.js",
"types": "./dist/src/index.d.ts",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "https://github.com/1Password/op-js"
},
"license": "MIT",
"scripts": {
"build": "license-checker-rseidelsohn --direct --files licenses && yarn compile --minify && tsc -p tsconfig.release.json --emitDeclarationOnly",
"compile": "esbuild --bundle --platform=node --outdir=dist src/index.js",
"eslint": "eslint -c .eslintrc.json 'src/*.ts'",
"prepare": "husky install",
"prettier": "prettier --check 'src/*.ts'",
"test:unit": "jest --testMatch '<rootDir>/src/*.test.ts'",
"test:integration": "jest --testMatch '<rootDir>/tests/*.test.ts' --setupFilesAfterEnv '<rootDir>/jest.setup.ts' --runInBand",
"typecheck": "tsc -p tsconfig.release.json --noEmit",
"watch": "yarn compile --watch"
},
"prettier": "@1password/front-end-style/prettierrc.json",
"lint-staged": {
"src/*.ts": [
"prettier --write",
"eslint -c .eslintrc.json --fix"
]
},
"devDependencies": {
"@1password/front-end-style": "^6.0.0",
"@types/jest": "^27.4.1",
"@types/node": "^18.0.0",
"@types/semver": "^7.3.9",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"esbuild": "^0.18.1",
"eslint-plugin-jsdoc": "^46.1.0",
"eslint-plugin-no-unsanitized": "^4.0.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-sonarjs": "^0.19.0",
"eslint-plugin-unicorn": "^40.1.0",
"husky": "^8.0.1",
"jest": "^27.5.1",
"joi": "^17.6.0",
"license-checker-rseidelsohn": "^3.1.0",
"lint-staged": "^13.0.1",
"prettier-plugin-organize-imports": "^3.0.0",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
},
"dependencies": {
"lookpath": "^1.2.2",
"semver": "^7.3.6"
}
}