-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
52 lines (52 loc) · 1.19 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
{
"name": "storage-factory",
"version": "0.2.1",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib"
],
"exports": {
"require": "./lib/index.js",
"import": "./lib/esm/index.js"
},
"devDependencies": {
"@types/jest": "^28.1.1",
"jest": "^28.1.1",
"prettier": "^2.2.1",
"ts-jest": "^28.0.5",
"typescript": "^4.1.3"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watchAll",
"format": "prettier --write src --write lib/esm"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js"
],
"testRegex": "^.+\\.spec\\.ts$"
},
"keywords": [],
"author": "Michal Zalecki <michal@michalzalecki.com>",
"license": "ISC",
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MichalZalecki/storage-factory.git"
},
"bugs": {
"url": "https://github.com/MichalZalecki/storage-factory/issues"
},
"homepage": "https://github.com/MichalZalecki/storage-factory#readme",
"description": "Because using localStorage directly is a bad idea"
}