This repository has been archived by the owner on Jul 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.86 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "iot",
"version": "1.0.0",
"description": "IOT communication protocol",
"author": "Pablo Díaz",
"main": "index.js",
"private": false,
"engines": {
"node": ">=4.8.0",
"npm": ">=2.15.11",
"yarn": ">=0.20.3"
},
"scripts": {
"start": "pm2 start dist/index.js -i 1 --attach",
"dev": "gulp serve",
"start:debug": "cross-env DEBUG=express-mongoose-es6-rest-api:* yarn start",
"build": "gulp",
"lint": "esw *.js server config --color",
"lint:watch": "yarn lint -- --watch",
"precommit": "yarn lint && yarn test",
"test": "cross-env NODE_ENV=test ./node_modules/.bin/mocha --ui bdd --reporter spec --colors --compilers js:babel-core/register server/v1/tests --recursive",
"test:watch": "yarn test -- --watch",
"test:coverage": "cross-env NODE_ENV=test ./node_modules/.bin/istanbul cover _mocha -- --ui bdd --reporter spec --colors --compilers js:babel-core/register server/v1/tests --recursive && ./node_modules/.bin/codecov -t 32d5fc43-ccba-43a6-9a6b-9ad7058a28e4",
"test:check-coverage": "yarn test:coverage && istanbul check-coverage",
"report-coverage": "coveralls < ./coverage/lcov.info",
"postinstall": "gulp",
"production": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/fcpauldiaz/BackEnd-GobHash.git"
},
"dependencies": {
"babel-core": "^6.25.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"babel-register": "^6.24.1",
"codecov": "2.2.0",
"dotenv": "^4.0.0",
"express": "4.15.3",
"express-winston": "2.4.0",
"gulp": "3.9.1",
"gulp-babel": "6.1.2",
"gulp-load-plugins": "^1.2.0",
"gulp-newer": "^1.1.0",
"gulp-sourcemaps": "^2.6.0",
"joi": "^10.6.0",
"mongoose": "^4.11.1",
"mqtt": "^2.12.0",
"mqttjs": "^0.0.0",
"pm2": "^2.5.0",
"pmx": "^1.2.0",
"rethinkdb": "^2.3.3",
"run-sequence": "^1.1.5",
"socket.io": "^2.0.3",
"uuid": "^3.1.0",
"winston": "2.3.1"
},
"devDependencies": {
"commitizen": "^2.9.2",
"coveralls": "^2.11.6",
"cross-env": "5.0.1",
"cz-conventional-changelog": "2.0.0",
"eslint": "4.2.0",
"eslint-config-airbnb-base": "11.2.0",
"eslint-plugin-import": "2.3.0",
"eslint-watch": "3.1.0",
"gulp-nodemon": "^2.0.6",
"supertest": "3.0.0",
"validate-commit-msg": "^2.6.1"
},
"license": "MIT",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"babel": {
"presets": [
"es2015",
"stage-2"
],
"plugins": [
"add-module-exports"
]
},
"snyk": true,
"bugs": {
"url": "https://github.com/fcpauldiaz/BackEnd-GobHash/issues"
},
"homepage": "https://github.com/fcpauldiaz/BackEnd-GobHash#readme",
"keywords": []
}