-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.01 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
{
"name": "rapify",
"version": "0.0.18",
"description": "Handles all boiler plate required to implement a REST API service",
"author": "Leonso Medina",
"url": "https://github.com/leonsomed/rapify/issues",
"license": "ISC",
"keywords": [
"express",
"validate",
"rest",
"restful",
"api",
"server",
"javascript"
],
"repository": {
"type": "git",
"url": "https://github.com/leonsomed/rapify.git"
},
"engines": {
"node": ">=8.0.0"
},
"main": "index.js",
"scripts": {
"buildTests": "./node_modules/webpack/bin/webpack.js --config webpack.config.test.js",
"build": "./node_modules/webpack/bin/webpack.js --config webpack.config.js",
"test": "npm run build && ./node_modules/mocha/bin/mocha --timeout 10000 --recursive ./tests",
"testBundle": "./node_modules/mocha/bin/mocha --timeout 10000 ./lib/tests.js"
},
"dependencies": {
"body-parser": "^1.18.3",
"lodash": "^4.17.10",
"validate.js": "^0.12.0"
},
"peerDependencies": {
"express": "4.x"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.3",
"babel-plugin-transform-builtin-extend": "^1.1.2",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-import": "^2.6.1",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.1.0",
"express": "^4.16.3",
"express-jwt": "^5.3.1",
"mocha": "^5.2.0",
"mongoose": "^5.2.10",
"node-mocks-http": "^1.7.0",
"webpack": "^4.17.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.6"
},
"files": [
"/lib"
]
}