-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.18 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
{
"name": "@repugraf/cross-domain-storage",
"version": "1.0.4",
"description": "Enables shared cross domain localStorage and sessionStorage",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/cjs/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && node ./scripts/post-build.js",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepublishOnly": "npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Repugraf/cross-domain-storage.git"
},
"keywords": [
"cross",
"domain",
"storage",
"localStorage"
],
"author": "Serhii Mamedov",
"license": "ISC",
"bugs": {
"url": "https://github.com/Repugraf/cross-domain-storage/issues"
},
"homepage": "https://github.com/Repugraf/cross-domain-storage#readme",
"devDependencies": {
"@repugraf/rewrite-esm-paths": "1.0.1",
"@types/jest": "28.1.2",
"@types/node": "18.0.0",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"eslint": "8.18.0",
"jest": "28.1.1",
"ts-jest": "28.0.5",
"typescript": "4.7.4"
}
}