-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.06 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
{
"name": "@tutor/memory-database",
"version": "0.6.10",
"description": "Non persistent memory implementation of database.",
"main": "./lib/db.js",
"scripts": {
"test": "node node_modules/gulp/bin/gulp.js && node_modules/mocha/bin/mocha",
"prepublish": "node node_modules/gulp/bin/gulp.js && node_modules/mocha/bin/mocha"
},
"devDependencies": {
"chai": "^3.2.0",
"chai-as-promised": "^5.1.0",
"gulp": "~3.8.11",
"gulp-coffee": "^2.3.1",
"gulp-plumber": "^1.0.1",
"gulp-util": "^3.0.6",
"gulp-watch": "^4.3.3",
"mocha": "^2.2.5",
"trash": "^2.0.0",
"vinyl-source-stream": "~1.0.0"
},
"repository": "github:Welfenlab/tutor-memory-database",
"contributors": [
"Maximilian Klein <dasmaxl@gmail.com> (https://github.com/LittleHelicase)",
"Maik Marschner (https://github.com/leMaik)",
"Tim Ebbeke (https://github.com/5cript)"
],
"license": "MIT",
"dependencies": {
"async": "^1.4.2",
"lodash": "^3.10.0",
"moment": "^2.10.3",
"node-uuid": "^1.4.3",
"randomstring": "^1.1.0"
}
}