-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
68 lines (68 loc) · 1.72 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
{
"name": "magic-router",
"version": "1.1.5",
"description": "routing pattern and high productive way for bulding mvc/api projects",
"main": "./distribution/magic-router.js",
"scripts": {
"lint": "eslint --ignore-path .gitignore .",
"precommit": "lint-staged",
"build": "rimraf /distribution && babel ./src --out-dir distribution/ --ignore ./node_modules,./.babelrc,./package.json,./npm-debug.log --copy-files",
"prepare": "npm run build",
"start": "babel-node ./example/server.js",
"test": "mocha --require babel-core/register --recursive --exit"
},
"lint-staged": {
"*.js": [
"prettier --single-quote --trailing-comma es5 --write",
"git add"
]
},
"dependencies": {
"consign": "^0.1.6",
"express": "^4.17.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"body-parser": "^1.19.0",
"chai": "^4.2.0",
"chai-http": "^3.0.0",
"eslint": "^4.19.1",
"husky": "^0.14.3",
"lint-staged": "^4.3.0",
"mocha": "^4.1.0",
"prettier": "^1.18.2",
"rimraf": "^2.7.1"
},
"peerDependencies": {
"express": "^4.12.2"
},
"repository": {
"type": "git",
"url": "https://github.com/benhurdavies/magic-router.git"
},
"keywords": [
"api",
"mvc",
"routing",
"pattern",
"routing-pattern",
"express",
"nodejs",
"webapp",
"controller-router",
"controller",
"resource-router",
"resource-router-middleware",
"magic-router",
"magicRouter"
],
"author": "Benhur Davies",
"license": "MIT",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}