-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.05 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": "@d2k/react-localstorage",
"version": "1.1.3",
"description": "React hooks for localstorage",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "https://github.com/bdbch/react-localstorage",
"author": "@d2k",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"dist/**/*.*"
],
"keywords": [
"react",
"hooks",
"localstorage"
],
"scripts": {
"prepublish": "npm run build",
"start": "tsc --watch",
"build": "npm run clean && tsc",
"clean": "rm -rf ./dist",
"lint": "tslint -c tslint.json 'src/**/*.ts?(x)'",
"set-upstream": "git branch --set-upstream-to origin/master",
"release:major": "npm run set-upstream && release major",
"release:minor": "npm run set-upstream && release minor",
"release:patch": "npm run set-upstream && release patch"
},
"devDependencies": {
"@types/react": "^16.8.23",
"react": "^16.8.4",
"react-dom": "^16.8.4",
"release": "^6.1.0",
"tslint": "^5.20.0",
"typescript": "^3.5.3"
}
}