-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.53 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
{
"name": "@aptoma/hapi-qs",
"version": "1.0.0",
"description": "Hapi plugin for parsing querystring with qs lib",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"watch": "mocha --watch 'test/**/*.js' 'lib/**/*.js' '*.js' --timeout 500",
"test": "npm run lint && NODE_ENV=test istanbul cover -i '*.js' _mocha -- -u exports -R spec 'test/**/*.test.js'",
"ci": "npm test --coverage && istanbul report cobertura",
"changelog": "git log `git describe --tags --abbrev=0`..HEAD --pretty=format:\" * %s\"",
"release": "npm run ci && release-it -n -i patch",
"release:minor": "npm run ci && release-it -n -i minor",
"release:major": "npm run ci && release-it -n -i major"
},
"engines": {
"node": ">=8.x.x"
},
"repository": {
"type": "git",
"url": "https://github.com/aptoma/hapi-qs"
},
"keywords": [],
"author": "Martin Jonsson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aptoma/hapi-qs/issues"
},
"homepage": "https://github.com/aptoma/hapi-qs",
"eslintConfig": {
"extends": "@aptoma/eslint-config",
"parserOptions": {
"ecmaVersion": "2017"
},
"env": {
"node": true,
"mocha": true,
"es6": true
}
},
"dependencies": {
"qs": "^6.5.1"
},
"devDependencies": {
"@aptoma/eslint-config": "7.0.1",
"chai": "4.1.2",
"chai-subset": "^1.6.0",
"eslint": "^4.12.1",
"hapi": "^17.1.1",
"istanbul": "^0.4.5",
"mocha": "4.0.1",
"nock": "^9.1.3",
"release-it": "3.0.2"
}
}