-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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
{
"name": "@ssasy-auth/core",
"license": "MIT",
"version": "3.1.0",
"description": "a self-sovereign authentication scheme",
"author": "[email protected]",
"repository": "ssasy-auth/core",
"packageManager": "[email protected]",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "mocha",
"test:silent": "mocha --reporter landing",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"bump": "npx fist-bump",
"prepack": "npm run lint:fix && npm run test && npm run build",
"clear": "npm run clear:build && npm run clear:pack",
"clear:pack": "rm -rf *.tgz",
"clear:build": "rm -rf lib",
"hook": "simple-git-hooks"
},
"dependencies": {
"buffer": "^6.0.3"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"chai": "^4.3.7",
"eslint": "^8.34.0",
"eslint-plugin-mocha": "^10.1.0",
"fist-bump": "^2.0.0",
"lint-staged": "^13.1.2",
"mocha": "^10.2.0",
"simple-git-hooks": "^2.8.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged && npm run test:silent"
},
"lint-staged": {
"*": "npm run lint:fix"
}
}