-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
90 lines (90 loc) · 2.37 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
{
"name": "metadata",
"version": "2.3.0",
"description": "Metadata Service",
"main": "index.js",
"scripts": {
"coverage": "NODE_PATH=app/src node $NODE_DEBUG_OPTION ./node_modules/.bin/grunt --gruntfile app/Gruntfile.js nyc",
"test": "NODE_PATH=app/src node $NODE_DEBUG_OPTION ./node_modules/.bin/grunt --gruntfile app/Gruntfile.js test",
"start": "NODE_PATH=app/src node $NODE_DEBUG_OPTION app/index.js",
"eslint": "eslint 'app/**/*.js' --fix"
},
"author": {
"name": "Vizzuality",
"email": "[email protected]",
"url": "http://vizzuality.com/"
},
"lint-staged": {
"*.js": [
"eslint 'app/**/*.js' --fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/Skydipper/Metadata.git"
},
"keywords": [
"rw",
"api2",
"microservice",
"node",
"javascript",
"koa"
],
"contributors": [
"sgordillo",
"rrequero"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Skydipper/Metadata/issues"
},
"homepage": "https://github.com/Skydipper/Metadata#readme",
"dependencies": {
"bluebird": "3.5.1",
"bunyan": "1.8.5",
"co": "4.6.0",
"config": "1.21.0",
"jsonapi-serializer": "2.1.1",
"kcors": "2.2.2",
"koa": "2.5.2",
"koa-body": "2.6.0",
"koa-convert": "1.2.0",
"koa-logger": "^2.0.1",
"koa-mount": "2.0.0",
"koa-router": "7.4.0",
"koa-validate": "1.0.7",
"lodash": "4.17.13",
"migrate-mongoose": "^3.2.2",
"mongoose": "5.7.5",
"sd-ct-register-microservice-node": "^2.1.7"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-eslint": "8.2.6",
"babel-plugin-istanbul": "^4.1.6",
"babel-preset-es2015": "^6.24.1",
"babel-register": "6.26.0",
"chai-datetime": "^1.5.0",
"chai-http": "^4.0.0",
"eslint": "5.2.0",
"eslint-config-airbnb": "17.0.0",
"eslint-plugin-import": "2.13.0",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-react": "7.10.0",
"grunt": "^1.3.0",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-jshint": "^3.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-express-server": "^0.5.4",
"grunt-mocha-test": "^0.13.3",
"grunt-simple-nyc": "^3.0.1",
"load-grunt-tasks": "^5.1.0",
"grunt-notify": "^0.4.5",
"mocha": "^5.2.0",
"nock": "^9.4.2",
"nyc": "^12.0.2"
}
}