forked from danliris/dl-core-webapi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.43 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
52
53
54
{
"name": "dl-core-webapi",
"version": "1.0.0",
"description": "Dan Liris core function RESTful api",
"main": "index.js",
"scripts": {
"test": "mocha test/index.js",
"cover": "istanbul cover _mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"start": "node index.js"
},
"engines": {
"node": "6.3.0",
"npm": "3.10.9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danliris/dl-core-webapi.git"
},
"author": "Moonlay",
"license": "MIT",
"bugs": {
"url": "https://github.com/danliris/dl-core-webapi/issues"
},
"homepage": "https://github.com/danliris/dl-core-webapi#readme",
"dependencies": {
"assert": "^1.4.1",
"dl-models": "git+https://github.com/danliris/dl-models.git",
"dl-module": "git+https://github.com/danliris/dl-module.git#dev",
"fast-csv": "^2.3.0",
"json2xls": "^0.1.2",
"jsonwebtoken": "^7.2.0",
"mongo-factory": "^1.0.0",
"mongodb": "^2.2.5",
"ms-rest": "^1.15.2",
"passport": "^0.3.2",
"passport-jwt": "^2.1.0",
"passport-local": "^1.0.0",
"powerbi-api": "^1.0.1",
"restify": "^4.1.1",
"restify-router": "^0.2.1"
},
"devDependencies": {
"coveralls": "^2.11.15",
"istanbul": "^0.4.5",
"mocha": "^3.0.0",
"mocha-lcov-reporter": "^1.2.0",
"should": "^10.0.0",
"supertest": "^2.0.0"
},
"directories": {
"test": "test"
}
}