forked from vardius/peer-cdn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.83 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
104
105
106
107
108
109
{
"name": "peer-cdn",
"version": "1.0.0-beta",
"description": "Lightweight library providing peer to peer CDN functionality",
"browser": "lib/index.js",
"main": "lib/index.js",
"module": "es/index.js",
"jsnext:main": "es/index.js",
"files": [
"lib",
"es",
"src"
],
"scripts": {
"clean": "rimraf lib es coverage",
"lint": "eslint src test build",
"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"
]
},
"jest": {
"testRegex": "(/test/.*\\.spec.js)$"
},
"dependencies": {
"socket.io": "^2.0.4"
},
"devDependencies": {
"babel-cli": "^6.3.15",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-jest": "^22.1.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-es3-member-expression-literals": "^6.5.0",
"babel-plugin-transform-es3-property-literals": "^6.5.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.5.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.3.13",
"check-es3-syntax-cli": "^0.2.0",
"cross-env": "^5.0.0",
"eslint": "^4.1.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-flowtype": "^2.34.0",
"eslint-plugin-import": "^2.6.0",
"glob": "^7.1.2",
"jest": "^21.2.1",
"jest-cli": "^21.2.1",
"peer-data": "^3.0.23",
"regenerator-runtime": "^0.11.1",
"rimraf": "^2.3.4",
"rollup": "^0.51.6",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-filesize": "^1.5.0",
"rollup-plugin-gzip": "^1.3.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^2.0.1",
"uglify-es": "^3.3.9",
"webrtc-adapter": "^6.1.0"
}
}