-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.37 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
{
"name": "@faizaanceg/pandora",
"version": "1.1.1",
"description": "A tiny wrapper over LocalStorage to improve DX",
"main": "dist/index.js",
"module": "dist/pandora.esm.js",
"source": "index.ts",
"repository": {
"url": "https://github.com/aulisius/pandora"
},
"scripts": {
"build": "tsdx build -i index.ts",
"lint": "tsdx lint",
"start": "tsdx watch -i index.ts",
"prepare": "npm run build",
"test": "jest"
},
"keywords": [
"pandora",
"localstorage",
"storage"
],
"author": "Md Faizaan <[email protected]>",
"license": "MIT",
"types": "dist/index.d.ts",
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.22",
"@typescript-eslint/parser": "^4.20.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "^2.6.3",
"ts-jest": "^26.5.4",
"tsdx": "^0.14.1",
"typescript": "^4.2.3"
},
"jest": {
"preset": "ts-jest"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"prettier"
],
"plugins": [
"prettier"
],
"env": {
"browser": true,
"es6": true
},
"rules": {
"prettier/prettier": "error",
"no-restricted-globals": "error"
}
},
"files": [
"dist/",
"README.md"
]
}