-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.5 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.5 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
{
"name": "@librpc/web",
"version": "1.1.1",
"description": "Promise-based RPC client and server for web workers",
"keywords": [
"rpc",
"worker",
"web-worker",
"threads",
"concurrency"
],
"license": "MIT",
"homepage": "https://github.com/librpc/web",
"repository": {
"type": "git",
"url": "https://github.com/librpc/web"
},
"bugs": {
"url": "https://github.com/librpc/web/issues",
"email": "broadsw.rd@yandex.ru"
},
"author": {
"name": "Vladimir Bykov",
"email": "broadsw.rd@yandex.ru",
"url": "https://github.com/broadsw0rd"
},
"files": [
"dist"
],
"umd": "dist/web-rpc.umd.js",
"main": "dist/web-rpc.cjs.js",
"module": "dist/web-rpc.js",
"dependencies": {
"@librpc/ee": "1.0.5"
},
"devDependencies": {
"coveralls": "3.0.4",
"jsdoc-to-markdown": "5.0.0",
"nyc": "14.1.1",
"rollup": "1.16.2",
"rollup-plugin-buble": "0.19.6",
"rollup-plugin-commonjs": "10.0.0",
"rollup-plugin-node-resolve": "5.0.4",
"snazzy": "8.0.0",
"standard": "12.0.1",
"tap-diff": "0.1.1",
"tape": "4.10.2",
"uglify-js": "3.6.0"
},
"scripts": {
"check": "standard src/*.js test/*.js | snazzy",
"build": "rollup -c",
"test": "nyc --reporter=html --reporter=lcov --reporter=text tape test/index.test.js",
"min": "uglifyjs dist/web-rpc.umd.js -c -m > dist/web-rpc.min.js",
"docs": "jsdoc2md src/*",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
}
}