-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.21 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
{
"name": "roar-mongo",
"version": "0.1.6",
"description": "Observable interface for MongoDB",
"main": "dist/Repository.js",
"scripts": {
"test": "mocha ./_tests_/**/*.js --compilers js:babel-register",
"test:watch": "nodemon --exec npm test",
"prepublish": "BABEL_ENV=production babel src --out-dir dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrjackdavis/roar-mongo.git"
},
"author": "Jack Davis",
"license": "MIT",
"bugs": {
"url": "https://github.com/mrjackdavis/roar-mongo/issues"
},
"homepage": "https://github.com/mrjackdavis/roar-mongo#readme",
"dependencies": {
"babel-polyfill": "^6.16.0",
"mongodb": "^2.2.11",
"rxjs": "^5.0.0-rc.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-async-to-generator": "^6.16.0",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-es2017": "^6.16.0",
"babel-preset-es2017-node7": "^0.4.1",
"babel-register": "^6.18.0",
"mocha": "^3.1.2",
"nodemon": "^1.11.0",
"sinon": "^1.17.6"
}
}