-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.33 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
{
"name": "typed-local-store",
"version": "2.0.2",
"description": "A type wrapper for the store api",
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"lint": "eslint --ext .ts src",
"clean-build": "rm -rf ./dist/*",
"build": "npm run clean-build && tsc -p ./tsconfig.json",
"prepublish": "npm run build",
"prepare": "husky install",
"predeno": "mkdir -p ./deno",
"deno": "npx ts-node ./scripts/denoify.ts && cp ./README.md ./deno/ && cp ./CHANGELOG.md ./deno/"
},
"keywords": [
"typed",
"store",
"storage"
],
"homepage": "https://github.com/lynoapp/typed-local-store",
"author": "@lynoapp <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/klaw": "^3.0.3",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"eslint": "^7.10.0",
"eslint-config-airbnb-typescript": "^11.0.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^5.1.3",
"jest": "^26.4.2",
"klaw": "^4.1.0",
"prettier": "2.1.2",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
}
}