-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 989 Bytes
/
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
{
"name": "worker-jsonrpc",
"version": "0.1.0",
"description": "A quick and dirty JSON-RPC 2.0 client/server implementation using `postMessage()` and promises",
"main": "lib/index.js",
"scripts": {
"babel": "babel --out-dir lib src",
"webpack": "webpack",
"webpack-min": "webpack --config webpack.config.min.js",
"build": "npm run babel && npm run webpack && npm run webpack-min",
"travis-test": "npm run cover && istanbul-coveralls",
"test": "jasmine",
"cover": "istanbul cover node_modules/jasmine/bin/jasmine.js --root lib"
},
"keywords": [
"json",
"jsonrpc",
"postmessage",
"rpc",
"webworker",
"worker"
],
"author": "Tim Barham",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-plugin-transform-async-to-generator": "^6.7.0",
"babel-preset-es2015": "^6.6.0",
"istanbul": "^0.4.2",
"istanbul-coveralls": "^1.0.3",
"jasmine": "^2.4.1",
"webpack": "^1.12.14"
}
}