This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 3.02 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
{
"name": "weacast-api",
"description": "Weacast Microservice",
"version": "1.6.2",
"homepage": "https://github.com/weacast/weacast-api",
"main": "lib/",
"bin": "lib/main.js",
"keywords": [
"weacast",
"api",
"microservices"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/weacast/weacast-api.git"
},
"author": {
"name": "Weacast contributors",
"url": "https://github.com/weacast-api"
},
"contributors": [],
"bugs": {
"url": "https://github.com/weacast/weacast-api/issues"
},
"scripts": {
"prepublish": "npm run compile",
"publish": "git push origin --tags && npm run changelog && git push origin",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"changelog": "github_changelog_generator -u weacast -p weacast-api && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"compile": "shx rm -rf lib/ && babel -d lib/ src/ -s",
"dev": "nodemon --watch src --exec npm run debug",
"dev:replica": "nodemon --watch src --exec npm run debug:replica",
"predebug": "npm run compile",
"debug": "cross-env NODE_ENV=development node --inspect lib/main.js",
"debug:replica": "cross-env NODE_ENV=development node --inspect=localhost:9230 lib/main.js",
"prod": "cross-env NODE_ENV=production node lib/main.js",
"lint": "standard src/**/*.js test/**/*.js --fix",
"mocha": "cross-env NODE_CONFIG_DIR=./test/config/ mocha --exit --require babel-core/register",
"coverage": "nyc npm run mocha",
"test": "npm run compile && npm run lint && npm run coverage",
"start": "npm run compile && node lib/main.js"
},
"standard": {
"parser": "babel-eslint",
"plugins": [
"html"
],
"sourceType": "module",
"env": [
"mocha"
]
},
"dependencies": {
"@feathersjs/authentication": "^2.1.16",
"@feathersjs/authentication-local": "^1.2.9",
"@feathersjs/errors": "^3.3.6",
"@feathersjs/express": "^1.3.1",
"@kalisio/feathers-distributed": "^1.0.5",
"containerized": "^1.0.2",
"feathers-hooks-common": "^3.5.0",
"fs-extra": "^4.0.2",
"http-proxy-middleware": "^0.17.4",
"lodash": "^4.17.4",
"weacast-alert": "^1.4.1",
"weacast-arome": "^1.6.0",
"weacast-arpege": "^1.6.0",
"weacast-core": "^1.5.0",
"weacast-gfs": "^1.6.0",
"weacast-probe": "^1.5.1",
"winston": "^2.3.1"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-runtime": "^6.0.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.2.0",
"chai-lint": "^0.1.1",
"colors": "^1.1.2",
"cross-env": "^3.1.3",
"eslint-plugin-html": "^3.1.1",
"nyc": "^15.0.1",
"mocha": "^6.2.0",
"nodemon": "^1.11.0",
"shx": "^0.2.2",
"standard": "^10.0.2"
}
}