-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.42 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
{
"name": "vocabulary-tag",
"version": "2.2.0",
"description": "Vocabulary Tag",
"main": "index.js",
"scripts": {
"develop": "NODE_PATH=app/src node $NODE_DEBUG_OPTION ./node_modules/.bin/grunt --gruntfile app/Gruntfile.js serve",
"start": "NODE_PATH=app/src node $NODE_DEBUG_OPTION app/index.js",
"test": "NODE_PATH=app/src node $NODE_DEBUG_OPTION ./node_modules/.bin/grunt --gruntfile app/Gruntfile.js test",
"coverage": "NODE_PATH=app/src node $NODE_DEBUG_OPTION ./node_modules/.bin/grunt --gruntfile app/Gruntfile.js nyc",
"lint": "eslint -c .eslintrc.yml app/src/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/resource-watch/vocabulary-tag.git"
},
"keywords": [
"api",
"microservice",
"node",
"javascript",
"koa"
],
"author": {
"name": "Vizzuality",
"email": "[email protected]",
"url": "http://vizzuality.com/"
},
"engines": {
"node": "~20.4"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/resource-watch/vocabulary-tag/issues"
},
"homepage": "https://github.com/resource-watch/vocabulary-tag#readme",
"dependencies": {
"bunyan": "^1.8.15",
"config": "^1.30.0",
"cron-parser": "^2.5.0",
"jsonapi-serializer": "3.6.7",
"kcors": "^2.1.1",
"koa": "^2.5.1",
"koa-body": "^2.0.0",
"koa-logger": "^2.0.0",
"koa-mount": "^2.0.0",
"koa-router": "^7.4.0",
"koa-simple-healthcheck": "^0.0.1",
"koa-validate": "^1.0.7",
"load-grunt-tasks": "^5.1.0",
"lodash": "^4.17.21",
"mongoose": "^5.7.14",
"mongoose-paginate": "^5.0.3",
"rw-api-microservice-node": "^5.1.3",
"sleep": "^6.3.0"
},
"devDependencies": {
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"eslint": "^8.26.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.10",
"grunt": "^1.5.3",
"grunt-cli": "^1.4.3",
"grunt-contrib-watch": "^1.1.0",
"grunt-express-server": "^0.5.4",
"grunt-mocha-test": "^0.13.3",
"grunt-simple-nyc": "^3.0.1",
"husky": "^7.0.4",
"lint-staged": "^12.5.0",
"mocha": "^10.1.0",
"nock": "^13.2.9",
"nyc": "^15.1.0",
"should": "^13.2.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix"
]
}
}