-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.36 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.36 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "FlowR",
"description": "Task Flow, ToDo List, GTD and Time tracker at once.",
"version": "0.0.1",
"main": "server/server.js",
"contributors": [
{
"name": "wiatrM",
"email": "mwiatr.dev@gmail.com"
},
{
"name": "lapek",
"email": ""
}
],
"repository": {
"type": "git",
"url": "https://github.com/wiatrM/FlowR.git"
},
"license": "Apache-2.0",
"dependencies": {
"async": "^2.0.1",
"cldr-data": "^30.0.1",
"compression": "^1.6.2",
"cors": "^2.7.1",
"helmet": "^3.1.0",
"loopback": "^2.36.0",
"loopback-boot": "^2.23.0",
"loopback-component-explorer": "^2.7.0",
"loopback-connector-postgresql": "^2.7.0",
"loopback-satellizer-integration": "0.0.1",
"serve-favicon": "^2.3.0",
"strong-error-handler": "^1.0.1",
"underscore": "^1.8.3"
},
"devDependencies": {
"bower": "^1.8.0",
"chai": "^3.5.0",
"coveralls": "^2.11.12",
"del": "^2.2.1",
"eslint-config-loopback": "^4.0.0",
"event-stream": "^3.3.4",
"gulp": "^3.9.1",
"gulp-angular-filesort": "^1.1.1",
"gulp-concat": "^2.6.1",
"gulp-debug": "^3.0.0",
"gulp-filter": "^4.0.0",
"gulp-flatten": "^0.3.0",
"gulp-gzip": "^1.4.0",
"gulp-inject": "^4.1.0",
"gulp-istanbul": "^1.1.1",
"gulp-jshint": "^2.0.3",
"gulp-main-bower-files": "^1.5.2",
"gulp-minify-css": "^1.2.4",
"gulp-mocha": "^3.0.1",
"gulp-rename": "^1.2.2",
"gulp-rev": "^7.1.0",
"gulp-sync": "^0.1.4",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.7",
"istanbul": "^0.4.4",
"jshint": "^2.9.4",
"jshint-stylish": "^2.2.1",
"lcov-result-merger": "^1.2.0",
"mocha": "^3.1.2",
"mocha-lcov-reporter": "^1.2.0",
"nsp": "^2.6.2",
"run-sequence": "^1.2.2",
"sinon": "^1.17.5",
"superagent": "^2.1.0",
"supertest": "^2.0.1"
},
"scripts": {
"start": "node .",
"posttest": "nsp check",
"test": "gulp test:all",
"cover": "istanbul cover _mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
}
}