-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.44 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "typesafe-storage",
"version": "1.0.9",
"description": "Typesafe Web Storage API wrapper to support objects and arrays",
"main": "dist/index.js",
"module": "dist/typesafe-storage.esm.js",
"umd:main": "dist/typesafe-storage.umd.production.min.js",
"unpkg": "dist/typesafe-storage.umd.production.min.js",
"jsdelivr": "dist/typesafe-storage.umd.production.min.js",
"jsnext:main": "dist/typesafe-storage.esm.js",
"source": "src/index.ts",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"sideEffects": false,
"scripts": {
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"start": "tsdx watch",
"build": "rimraf dist && tsdx build --name TypesafeStorage --format esm,cjs,umd",
"test": "tsdx test",
"test:watch": "tsdx test --watch",
"test:coverage": "tsdx test --coverage",
"lint": "tsdx lint '**/*.{js,ts}'",
"lint:fix": "yarn lint --fix",
"prepare": "yarn build",
"release": "semantic-release",
"commit": "commit"
},
"repository": {
"type": "git",
"url": "https://github.com/kotarella1110/typesafe-storage.git"
},
"keywords": [
"typescript",
"typesafe",
"storage",
"store",
"webstorage",
"sessionstorage",
"localstorage"
],
"author": "Kotaro Sugawara <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kotarella1110/typesafe-storage/issues"
},
"homepage": "https://github.com/kotarella1110/typesafe-storage#readme",
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@commitlint/prompt-cli": "^13.1.0",
"@semantic-release/changelog": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^26.0.24",
"all-contributors-cli": "^6.20.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"husky": "^7.0.1",
"jest-localstorage-mock": "^2.4.14",
"lint-staged": "^11.1.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.4",
"tsdx": "^0.14.1",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
},
"jest": {
"setupFiles": [
"jest-localstorage-mock"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts}": [
"yarn lint:fix",
"git add"
],
"*.{md,json}": [
"prettier --write",
"git add"
]
}
}