-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 968 Bytes
/
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
{
"name": "rule-sdk",
"version": "0.1.0",
"main": "dist/index.js",
"license": "MIT",
"homepage": "https://github.com/Emad-salah/rule-sdk#readme",
"repository": {
"type": "git",
"url": "https://github.com/Emad-salah/rule-sdk.git"
},
"files": [
"./dist"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"build:publish": "tsc && yarn publish"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"husky": "^4.2.3",
"prettier": "^1.19.1",
"tslint": "^6.1.3",
"typedoc": "^0.22.7",
"typescript": "^4.4.3"
},
"dependencies": {
"@types/jsonwebtoken": "^8.5.4",
"axios": "^0.19.0",
"jsonwebtoken": "^8.5.1"
}
}