UNPKG

1.67 kBJSONView Raw
1{
2 "name": "micro2",
3 "version": "1.6.2",
4 "description": "Node.js based asynchronous micro-library (WIP)",
5 "main": "./lib/index.js",
6 "files": [
7 "lib"
8 ],
9 "engines": {
10 "node": ">=6"
11 },
12 "scripts": {
13 "start": "npm run example",
14 "example": "./node_modules/.bin/nodemon examples/server.js",
15 "test": "./node_modules/.bin/jest --coverage",
16 "lint": "./node_modules/.bin/eslint **/*.js --ignore-path .gitignore",
17 "benchmark": "./node_modules/.bin/autocannon -c 1000 -d 5 -p 5 http://localhost:3000",
18 "precommit": "npm test && npm run lint",
19 "prepush": "npm test && npm run lint"
20 },
21 "repository": {
22 "type": "git",
23 "url": "git+https://github.com/rjoydip/micro2.git"
24 },
25 "keywords": [
26 "micro2",
27 "service",
28 "microservice",
29 "serverless",
30 "API"
31 ],
32 "license": "MIT",
33 "devDependencies": {
34 "autocannon": "^2.4.1",
35 "eslint": "^5.4.0",
36 "eslint-config-standard": "^12.0.0-alpha.0",
37 "eslint-plugin-import": "^2.14.0",
38 "eslint-plugin-node": "^7.0.1",
39 "eslint-plugin-promise": "^4.0.0",
40 "eslint-plugin-standard": "^3.1.0",
41 "husky": "^0.14.3",
42 "jest": "^23.5.0",
43 "nodemon": "^1.18.3"
44 },
45 "dependencies": {
46 "content-type": "1.0.4",
47 "find-my-way": "^1.15.1",
48 "is-stream": "1.1.0",
49 "middie": "^3.1.0",
50 "pino": "^5.4.0",
51 "raw-body": "2.3.2"
52 },
53 "bugs": {
54 "url": "https://github.com/rjoydip/micro2/issues"
55 },
56 "readme": "ERROR: No README data found!",
57 "homepage": "https://github.com/rjoydip/micro2#readme",
58 "husky": {
59 "hooks": {
60 "pre-commit": "npm run precommit",
61 "pre-push": "npm run prepush"
62 }
63 }
64}