-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
60 lines (60 loc) · 1.61 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
{
"name": "koa-bouncer",
"version": "6.0.4",
"description": "A parameter validation library for Koa routes",
"main": "src/index.js",
"scripts": {
"test": "NODE_ENV=test mocha --reporter spec --compilers js:babel-core/register",
"patch": "npm version patch && npm publish",
"minor": "npm version minor && npm publish",
"major": "npm version major && npm publish",
"postpublish": "git push origin master --follow-tags",
"deploy": "git pull --rebase origin master && git push origin master",
"pretty-fix": "./node_modules/.bin/prettier --write \"{src,test}/**/*.js\""
},
"repository": {
"type": "git",
"url": "https://github.com/danneu/koa-bouncer"
},
"keywords": [
"validation",
"koa"
],
"author": "Dan Neumann <[email protected]> (https://github.com/danneu)",
"license": "MIT",
"bugs": {
"url": "https://github.com/danneu/koa-bouncer/issues"
},
"homepage": "https://github.com/danneu/koa-bouncer",
"dependencies": {
"better-assert": "^1.0.2",
"debug": "^3.1.0",
"lodash": "^4.0.0",
"validator": "^9.0.0"
},
"devDependencies": {
"babel-core": "^6.9.0",
"babel-polyfill": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"chai": "^3.4.0",
"eslint": "^1.7.3",
"eslint-config-volox": "^1.0.2",
"koa": "^2.0.0",
"mocha": "^2.3.3",
"prettier": "^1.7.4",
"supertest": "^1.1.0"
},
"babel": {
"presets": [
"es2015",
"stage-0"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
}
}