This repository was archived by the owner on Sep 5, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.55 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.55 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
{
"name": "micro-parse-request",
"version": "0.0.1",
"description": "Parse incomming message from http server on node.js for zeit micro",
"keywords": [
"micro",
"parse",
"request",
"incomming"
],
"private": false,
"homepage": "https://github.com/arvati/micro-parse-request#readme",
"bugs": "https://github.com/arvati/micro-parse-request/issues",
"main": "/lib/index.js",
"scripts": {
"test": "DOTENV_CONFIG_PATH=./test/.env mocha -R spec",
"doc": "DOTENV_CONFIG_PATH=./test/.env mocha -R markdown > public/usage.md",
"serve": "node --inspect node_modules/.bin/micro-dev test/example.js",
"dev": "now dev",
"deploy": "now",
"git": "git add . && git commit -m",
"postgit": "git push --all"
},
"repository": "github:arvati/micro-parse-request",
"author": "Ademar Arvati Filho (https://github.com/arvati)",
"license": "MIT",
"dependencies": {
"cookie": "^0.4.0",
"crypto-keys": "https://github.com/arvati/crypto-keys/releases/download/v0.0.1-alpha/crypto-keys-v0.0.1.tgz",
"ipware": "^2.0.0",
"original-url": "^1.2.3",
"path-to-regexp": "^3.0.0",
"qs": "^6.7.0",
"simple-crypt": "^2.1.6"
},
"peerDependencies": {
"micro": "^9.1.0"
},
"devDependencies": {
"dotenv": "^8.0.0",
"eslint": "^5.16.0",
"micro": "^9.1.0",
"micro-dev": "^3.0.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"supertest": "^4.0.2"
},
"engines": {
"node": ">7.10.1"
},
"files": [
"/lib/index.js",
"/lib/parse.js",
"/lib/ipware.json",
"AUTHORS.md"
]
}