-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
103 lines (103 loc) · 2.74 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "peer-cdn",
"version": "1.0.5-beta",
"description": "Lightweight library providing peer to peer CDN functionality",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"files": [
"dist"
],
"scripts": {
"clean": "rimraf dist coverage",
"lint": "eslint src test",
"test": "cross-env BABEL_ENV=test jest --no-cache --config jest-config.js",
"posttest": "yarn run lint",
"test:watch": "yarn test --watch",
"test:cov": "yarn test --coverage",
"build": "cross-env NODE_ENV=production rollup -c",
"prepare": "yarn run build",
"prebuild": "yarn run clean",
"preversion": "yarn test",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/vardius/peer-cdn.git"
},
"keywords": [
"peer-cdn",
"peer",
"cdn",
"service",
"worker",
"workers",
"peer-to-peer",
"peer-2-peer",
"peer2peer",
"p2p",
"cache"
],
"authors": [
"Rafał Lorenz <[email protected]> (https://github.com/vardius)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/vardius/peer-cdn/issues"
},
"homepage": "http://rafallorenz/peer-cdn",
"npmName": "peer-cdn",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
],
"browserify": {
"transform": [
"loose-envify"
]
},
"peerDependencies": {
"webrtc-adapter": "^7.2.3"
},
"dependencies": {
"peer-data": "^3.2.4",
"socket.io": "^2.3.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"babel-eslint": "^10.1.0",
"check-es3-syntax-cli": "^0.2.0",
"cross-env": "^5.0.0",
"eslint": "^5.16.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-flowtype": "^3.9.1",
"eslint-plugin-import": "^2.6.0",
"glob": "^7.1.2",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"rimraf": "^2.3.4",
"rollup": "^1.12.3",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-filesize": "^6.1.0",
"rollup-plugin-gzip": "^2.2.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-replace": "^2.0.0"
}
}