-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
71 lines (71 loc) · 1.83 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
{
"name": "express-routes-mapper",
"version": "1.1.0",
"description": "a small mapper for express routes",
"main": "lib/index.js",
"scripts": {
"pretest": "npm run lint && npm run babel",
"test": "cross-env NODE_ENV=test nyc ava",
"lint": "eslint ./src/index.js",
"lintFix": "eslint ./src/index.js --fix",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"prepublish": "npm run babel",
"build": "npm run babel",
"precommit": "npm run lint",
"prepush": "npm test",
"babel": "babel src --out-dir lib"
},
"keywords": [
"express",
"routes",
"mapper",
"routing",
"map"
],
"repository": {
"type": "git",
"url": "git+https://github.com/aichbauer/express-routes-mapper.git"
},
"bugs": {
"url": "https://github.com/aichbauer/express-routes-mapper/issues"
},
"homepage": "https://github.com/rudolfsonjunior/express-routes-mapper#readme",
"author": "Lukas Aichbauer <[email protected]> (https://github.com/aichbauer/)",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.1.2",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.1.2",
"express": "^4.16.3",
"object.entries": "^1.0.4"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"ava": "^0.18.2",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-istanbul": "^5.0.1",
"coveralls": "^2.12.0",
"cross-env": "^5.2.0",
"eslint": "^3.17.1",
"eslint-config-airbnb-base": "^11.1.1",
"eslint-plugin-import": "^2.2.0",
"husky": "^0.13.2",
"nyc": "^10.1.2"
},
"ava": {
"require": [
"@babel/register"
]
},
"nyc": {
"exclude": [
"test",
"examples"
],
"all": true,
"sourceMap": false,
"instrument": false
}
}