This repository was archived by the owner on Aug 9, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.14 KB
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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "3box-shared-cache",
"version": "1.1.1",
"description": "The shared cache module that 3box uses to share cache across domains using an iframe",
"main": "lib/index.js",
"scripts": {
"lint": "./node_modules/.bin/standard --verbose src/**",
"test": "jest",
"build:es5": "./node_modules/.bin/babel src --out-dir lib",
"build": "./node_modules/.bin/webpack-cli --config webpack.config.js",
"build:watch": "./node_modules/.bin/webpack-cli --config webpack.config.js --mode=development --watch",
"server:start": "http-server -c-1 -p 30002 public",
"prepublishOnly": "npm run build:es5",
"start": "npm run build:watch & npm run server:start"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/3box/3box-shared-cache.git"
},
"keywords": [
"3box",
"shared-cache",
"cache",
"iframe"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/3box/3box-shared-cache/issues"
},
"homepage": "https://github.com/3box/3box-shared-cache#readme",
"jest": {
"testPathIgnorePatterns": [
"node_modules",
"dist"
]
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-loader": "^8.0.6",
"express": "^4.17.1",
"http-server": "^0.11.1",
"ipfs": "^0.46.0",
"ipfs-repo": "^3.0.3",
"jest": "^25.1.0",
"orbit-db": "^0.24.1",
"orbit-db-cache": "^0.3.0",
"orbit-db-keystore": "^0.3.4",
"serve-static": "^1.14.1",
"standard": "^14.3.1",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"@babel/runtime": "^7.9.2",
"abstract-leveldown": "^6.2.2",
"datastore-level": "^1.1.0",
"level-js": "^4.0.2",
"levelup": "^4.3.2",
"orbit-db-storage-adapter": "^0.5.3",
"postmsg-rpc": "^2.4.0"
},
"standard": {
"ignore": [
"/src/modernizr.js"
]
}
}