forked from loris/api-query-params
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.05 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
{
"name": "api-query-params",
"version": "4.5.1",
"description": "Convert query parameters from API urls to MongoDB queries",
"main": "dist/index.js",
"files": [
"bin/",
"dist/"
],
"scripts": {
"clean": "rimraf dist",
"lint": "eslint src test",
"check": "npm run lint -s && dependency-check package.json --entry src",
"watch": "watch 'npm run build' src test",
"test": "ava",
"prebuild": "npm run check -s && npm run clean -s",
"build": "babel --optional runtime src -d dist",
"postbuild": "npm run test -s",
"coverage": "nyc npm test && nyc report --reporter=html",
"coveralls": "npm run coverage -s && coveralls < ./coverage/lcov.info",
"postcoveralls": "rimraf ./coverage",
"prepublish": "npm run build -s",
"deploy": "git pull --rebase origin master && git push origin master",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loris/api-query-params.git"
},
"ava": {
"verbose": true,
"require": [
"babel-core/register"
]
},
"keywords": [
"node",
"api",
"query parameters",
"mongodb"
],
"author": "Loris Guignard <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/loris/api-query-params/issues"
},
"homepage": "https://github.com/loris/api-query-params#readme",
"dependencies": {
"ava": "0.19.1"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.24.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-preset-env": "^1.6.0",
"coveralls": "2.13.1",
"dependency-check": "2.8.0",
"eslint": "3.19.0",
"eslint-config-airbnb-base": "11.2.0",
"eslint-plugin-ava": "4.2.0",
"eslint-plugin-import": "2.3.0",
"nyc": "11.0.1",
"rimraf": "2.6.1",
"watch": "1.0.2"
}
}