-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.59 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.59 KB
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
{
"name": "express-common-router",
"version": "2.2.1",
"description": "Common routes for express",
"main": "lib/index.js",
"engines": {
"node": ">= 0.10.0"
},
"files": [
"lib"
],
"scripts": {
"start": "yarn run build && node public/server.js",
"lint": "eslint src",
"clean": "rm -rf ./lib ./public",
"babel": "babel src -d lib && babel examples -d public",
"build": "yarn run clean && yarn run babel",
"test": "yarn run lint && yarn run test:unit",
"test:unit": "mocha --compilers js:babel-register test/*.js test/**/*.js",
"release": "yarn run release:git && yarn run release:npm",
"release:git": "/bin/bash ./ci/git-release.sh",
"release:npm": "/bin/bash ./ci/npm-release.sh"
},
"dependencies": {
"common-basic-validator": "^0.3.2",
"express": "^4.14.0",
"methods": "^1.1.2",
"path": "^0.12.7"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.11.6",
"chai": "^3.5.0",
"eslint": "^3.2.0",
"mocha": "^3.0.0",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsmodule/express-common-router.git"
},
"keywords": [
"nodejs",
"express",
"routes"
],
"author": "thomascxq <thomascxq@gmail.com>",
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/jsmodule/express-common-router/issues"
},
"homepage": "https://github.com/jsmodule/express-common-router#readme"
}