-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.3 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
{
"name": "@kalisio/kfs",
"description": "Kalisio Features Services",
"version": "1.2.2",
"homepage": "https://github.com/kalisio/kfs",
"main": "src/main.js",
"bin": "src/bin.js",
"type": "module",
"keywords": [
"ogc",
"api",
"features"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/kalisio/kfs.git"
},
"author": {
"name": "Kalisio contributors",
"url": "https://github.com/kalisio/kfs"
},
"contributors": [],
"bugs": {
"url": "https://github.com/kalisio/kfs/issues"
},
"scripts": {
"publish": "git push origin --tags && git push origin",
"release:patch": "npm version patch && npm publish --access public",
"release:minor": "npm version minor && npm publish --access public",
"release:major": "npm version major && npm publish --access public",
"dev": "nodemon --watch src --exec npm run debug",
"debug": "cross-env NODE_ENV=development node --inspect src/bin.js",
"prod": "cross-env NODE_ENV=production node src/bin.js",
"lint": "standard src/**/*.js test/**/*.js --fix",
"mocha": "cross-env NODE_CONFIG_DIR=./test/config/ mocha --exit",
"coverage": "c8 npm run mocha",
"test": "npm run lint && npm run coverage"
},
"standard": {
"sourceType": "module",
"env": [
"mocha"
]
},
"dependencies": {
"@feathersjs/commons": "^5.0.8",
"@feathersjs/errors": "^5.0.8",
"@feathersjs/express": "^5.0.8",
"@feathersjs/feathers": "^5.0.8",
"@feathersjs/schema": "^5.0.8",
"@kalisio/feathers-distributed": "^2.4.0",
"compression": "^1.6.2",
"containerized": "^1.0.2",
"cors": "^2.8.1",
"debug": "^4.1.0",
"envsub": "^4.0.7",
"feathers-hooks-common": "^5.0.6",
"feathers-mongodb-fuzzy-search": "^2.0.1",
"fs-extra": "^10.0.1",
"helmet": "^3.5.0",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"sift": "^8.0.0",
"wellknown": "^0.5.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^3.10.0"
},
"devDependencies": {
"@feathersjs/memory": "^5.0.8",
"@kalisio/kdk": "^2.2.1",
"c8": "^7.11.0",
"chai": "^4.3.6",
"chai-lint": "^0.1.1",
"cross-env": "^7.0.3",
"mocha": "^9.2.2",
"nodemon": "^2.0.15",
"shx": "^0.3.4",
"standard": "^16.0.4",
"superagent": "^5.1.0"
}
}