-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.3 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
{
"name": "exchannel",
"version": "2.0.0",
"description": "Add sending of events requests with a response to any data channel implementing send and .on('message')",
"main": "index-node6.js",
"scripts": {
"test": "npm run build && mocha test",
"mocha": "mocha",
"build": "babel index.js -o index-es5.js && babel --no-babelrc --presets latest-node6 index.js -o index-node6.js",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/virtkick/node-exchannel.git"
},
"keywords": [
"data",
"stream",
"event",
"message",
"request",
"response"
],
"author": "Damian Kaczmarek <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/virtkick/node-exchannel/issues"
},
"homepage": "https://github.com/virtkick/node-exchannel#readme",
"dependencies": {
"promise-resolve-deep": "^1.0.3"
},
"devDependencies": {
"bluebird": "^3.4.3",
"babel-cli": "^6.14.0",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-inline-environment-variables": "0.0.2",
"babel-preset-es2015": "^6.14.0",
"babel-preset-latest-node6": "^0.1.1",
"chai": "^3.5.0",
"mocha": "^3.0.2",
"should": "^11.1.0"
},
"jspm": {
"main": "index-es5.js"
}
}