-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.4 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
{
"name": "cross-domain-shared-storage",
"version": "1.0.1",
"description": "storage is shared across domains library",
"module": "lib/index.es.js",
"main": "lib/index.cjs.js",
"types": "lib/types/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf lib/*",
"build": "yarn clean && TARGET=all rollup -c && yarn build:min:client && yarn build:min:hub",
"build:min:client": "TARGET=client rollup -c",
"build:min:hub": "TARGET=hub rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gzkiwiinc/cross-domain-shared-local-storage.git"
},
"keywords": [
"localStorage",
"javascript",
"typescript"
],
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/gzkiwiinc/cross-domain-shared-local-storage/issues"
},
"homepage": "https://github.com/gzkiwiinc/cross-domain-shared-local-storage#readme",
"files": [
"lib/**/*"
],
"devDependencies": {
"@babel/core": "^7.11.6",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-latest": "^6.24.1",
"cross-env": "^7.0.2",
"rollup": "^2.28.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-typescript2": "^0.27.3",
"typescript": "^4.0.3"
}
}