forked from Itee/database
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.33 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.33 KB
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
48
49
50
51
{
"name": "itee-database",
"version": "4.0.0",
"description": "The abstract database side of the Itee solution for 3d web content, this package is design to work with an Itee server.",
"main": "sources/itee-database.js",
"scripts": {
"help": "gulp help",
"clean": "gulp clean",
"lint": "gulp lint",
"doc": "gulp doc",
"test": "gulp test",
"build": "gulp build",
"release": "gulp release"
},
"keywords": [
"itee",
"database",
"library"
],
"author": "Itee (Tristan VALCKE)",
"license": "MIT",
"dependencies": {
"i-return": "^1.0.3",
"itee-utils": "^1.1.5",
"itee-validators": "^2.0.1",
"mongoose": "^5.2.4",
"pg-promise": "^8.4.6"
},
"devDependencies": {
"chai": "^4.1.2",
"del": "^3.0.0",
"docdash": "^0.4.0",
"eslint-plugin-mocha": "^5.0.0",
"gulp": "^4.0.0",
"gulp-eslint": "^4.0.2",
"gulp-jsdoc3": "^2.0.0",
"gulp-util": "^3.0.8",
"karma": "^2.0.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"mocha": "^5.2.0",
"rollup": "^0.59.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-strip": "^1.1.1",
"rollup-plugin-uglify-es": "0.0.1"
}
}