-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.45 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
{
"name": "permanent-storage",
"version": "1.0.3",
"description": "An implementation based on browser storage event to persist items in local storage and session storage",
"scripts": {
"build": "npx webpack",
"test": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rehanumar/permanent-storage.git"
},
"keywords": [
"persistent",
"permanent",
"storage",
"localStorage",
"sessionStorage",
"unremovable item",
"undeletable",
"unexpirable"
],
"author": "Rehan Umar",
"license": "MIT",
"bugs": {
"url": "https://github.com/rehanumar/permanent-storage/issues"
},
"homepage": "https://github.com/rehanumar/permanent-storage#readme",
"browser": "dist/index.js",
"main": "dist/index.js",
"files": [
"dist/index.js",
"src/index.d.ts"
],
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@purtuga/esm-webpack-plugin": "^1.4.0",
"babel-loader": "^8.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "2.1.2",
"server": "^1.0.30",
"typescript": "^4.0.3",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.{js,css,md}": "prettier --write"
}
}