-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.86 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
59
60
61
62
63
64
65
{
"name": "@silkey/sdk",
"version": "0.5.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=12.0.0"
},
"description": "SDK for Sign In with Silke",
"scripts": {
"lint": "eslint './src/**/*.ts' './test/**/*.ts' --fix",
"clean": "rimraf dist",
"compile": "tsc",
"copy:assets": "cpx 'src/**/*.{graphql,html,png,json}' dist",
"typeorm": "node --require ./node_modules/ts-node/register ./node_modules/typeorm/cli.js",
"build": "npm run clean && npm run compile && npm run copy:assets",
"test": "npx mocha --require ts-node/register --ui bdd 'test/**/*.test.ts'",
"prepare": "npm run build",
"doc": "npm run build && jsdoc2md dist/services/sso.js dist/models/JwtPayload.js > DOCS.md",
"git:amend": "git commit --amend --no-edit && git push --force",
"pre-push": "npm run clean && npm run lint && npm run build && npm run doc && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Silkey-Team/silkey-sdk.git"
},
"author": "Silkey.io",
"license": "MIT",
"bugs": {
"url": "https://github.com/Silkey-Team/silkey-sdk/issues"
},
"homepage": "https://silkey.io",
"dependencies": {
"@types/jsonwebtoken": "~8.5.0",
"ethers": "^5.0.24",
"jsonwebtoken": "^8.5.1"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.12",
"@typescript-eslint/eslint-plugin": "^4.9.1",
"@typescript-eslint/parser": "^4.9.1",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"eslint": "^7.15.0",
"husky": "^4.3.5",
"jsdoc-to-markdown": "^6.0.1",
"typescript": "^4.1.3",
"mocha": "^8.2.1",
"cpx": "^1.5.0",
"ts-node": "^9.1.1"
},
"husky": {
"hooks": {
"pre-push": "npm run pre-push"
}
},
"directories": {
"test": "test"
}
}