-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
44 lines (44 loc) · 1.02 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
{
"name": "node-msmq",
"version": "0.1.3",
"description": "A MSMQ implementation for node.js",
"main": "dist/index.js",
"scripts": {
"build": "npm run build:js && npm run build:lib",
"build:js": "babel *.js --out-dir=dist",
"build:lib": "csc /target:library /out:dist\\MSMQLib.dll MSMQLib\\MSMQMessage.cs MSMQLib\\MSMQInterface.cs"
},
"keywords": [
"msmq",
"message",
"queue",
"messaging"
],
"author": {
"email": "me@marcobarcelos.com",
"name": "Marco Barcelos",
"url": "marcobarcelos.com"
},
"repository": "marcobarcelos/node-msmq",
"license": "MIT",
"babel": {
"plugins": [
"add-module-exports",
"transform-runtime"
],
"presets": [
"es2015"
],
"sourceMaps": "inline"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.6.0"
},
"dependencies": {
"babel-runtime": "^6.9.0",
"edge": "^5.0.0"
}
}