-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 838 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 838 Bytes
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": "transact.js",
"version": "0.1.0",
"description": "Simple Node JS based transaction manager for asynchronous (promise based) transaction management.",
"main": "index.js",
"scripts": {
"build": "babel src/Transaction.js -s --out-file index.js",
"test": "mocha --reporter spec"
},
"repository": {
"type": "git",
"url": "https://github.com/zpappa/transact.js/"
},
"keywords": [
"transaction",
"promise",
"manager"
],
"author": "zpappa",
"license": "MIT",
"dependencies": {
"bluebird": "^3.5.0",
"lodash.foreach": "^4.5.0",
"lodash.foreachright": "^4.4.0",
"lodash.isfunction": "^3.0.8",
"lodash.sortby": "^4.7.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.0.2",
"mocha": "^3.4.2"
}
}