-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.64 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
{
"name": "persistore",
"version": "2.0.0",
"description": "Automatically applying persistent storage with fallback strategies",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dist": "rm -rf dist && rollup -c && tsc -p tsconfig.publish.json",
"lint": "pnpm lint:es && pnpm lint:ts",
"lint:ts": "tsc",
"lint:es": "eslint --ext .ts src/ test/ --max-warnings 0",
"test": "jest --all --coverage --color",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/fdc-viktor-luft/persistore"
},
"keywords": [
"persist",
"store",
"storage",
"fallback",
"localStorage",
"cookies"
],
"author": "Viktor Luft <[email protected]> (https://github.com/fdc-viktor-luft)",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^6.0.3",
"@sucrase/jest-plugin": "^3.0.0",
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"coveralls": "^3.1.1",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"prettier": "^2.8.3",
"rollup": "^3.10.0",
"rollup-plugin-typescript2": "^0.34.1",
"spy4js": "^3.4.1",
"sucrase": "^3.29.0",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
}
}