-
Notifications
You must be signed in to change notification settings - Fork 65
/
package.json
74 lines (74 loc) · 2.28 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
{
"name": "node-odata",
"version": "0.7.16",
"private": false,
"description": "A module for easily create a REST API based on oData protocol",
"main": "index.js",
"author": {
"name": "Zack",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/TossShinHwa/node-odata.git"
},
"engines": {
"node": ">=0.12"
},
"scripts": {
"lint": "eslint src/",
"prepublish": "make",
"test": "make",
"test:some": "node_modules/.bin/mocha --require @babel/register --reporter dot"
},
"keywords": [
"OData",
"REST",
"RESTful"
],
"license": "MIT",
"dependencies": {
"body-parser": "^1.20.0",
"cors": "2.8.5",
"express": "^4.18.1",
"method-override": "3.0.0",
"mongoose": "6.6.5",
"uuid": "9.0.0"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.3",
"@babel/eslint-parser": "^7.19.1",
"@babel/helpers": "^7.19.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-decorators": "^7.0.0",
"@babel/plugin-proposal-do-expressions": "^7.0.0",
"@babel/plugin-proposal-export-default-from": "^7.0.0",
"@babel/plugin-proposal-export-namespace-from": "^7.0.0",
"@babel/plugin-proposal-function-bind": "^7.0.0",
"@babel/plugin-proposal-function-sent": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.0.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.0.0",
"@babel/plugin-proposal-numeric-separator": "^7.0.0",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/plugin-proposal-pipeline-operator": "^7.0.0",
"@babel/plugin-proposal-throw-expressions": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.19.3",
"@babel/register": "^7.18.9",
"@babel/runtime": "^7.19.0",
"babel-loader": "8.2.5",
"eslint": "8.24.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-import": "^2.26.0",
"istanbul": "1.1.0-alpha.1",
"mocha": "10.0.0",
"should": "13.2.3",
"should-sinon": "0.0.6",
"sinon": "14.0.1",
"supertest": "6.3.0"
}
}