-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 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
{
"name": "unleash-client-safe-security",
"version": "3.2.0",
"description": "Unleash Client for Safe Security",
"main": "lib/index.js",
"types": "lib",
"files": [
"lib/**/*"
],
"repository": "[email protected]:Safe-Security/unleash-client.git",
"author": "Aneesh Relan <[email protected]>",
"license": "MIT",
"scripts": {
"prepare": "husky install",
"prebuild": "rm -rf lib",
"build": "tsc",
"release": "semantic-release"
},
"dependencies": {
"unleash-client": "^3.21.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@types/node": "^14.18.16",
"husky": "^8.0.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"semantic-release": "^19.0.5",
"typescript": "^4.8.3"
},
"lint-staged": {
"*.{js,json,css}": [
"prettier --write"
],
"*.{ts,tsx}": [
"prettier --write"
]
}
}