-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.13 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.13 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "now-we-test",
"description": "Test your Now deployed Node.js lambdas locally",
"version": "0.9.0",
"author": "Lucas Constantino Silva <lucasconstantinosilva@gmail.com>",
"bin": {
"now-we-test": "./bin/run"
},
"bugs": {
"url": "https://github.com/lucasconstantino/now-we-test/issues"
},
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^2",
"clear-module": "^3.0.0",
"finalhandler": "^1.1.1",
"glob": "^7.1.3",
"invariant": "^2.2.4",
"micro": "^9.3.3",
"minimatch": "^3.0.4",
"morgan": "^1.9.1",
"named-regexp-groups": "^1.0.3",
"serve-handler": "^5.0.7",
"stream-to-promise": "^2.2.0",
"supertest": "^3.3.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"codecov": "^3.0.2",
"console-suppress": "^0.1.1",
"eslint": "^4.19.1",
"eslint-config-taller": "^2.0.0",
"globby": "^8",
"husky": "^1.3.1",
"jest": "^23.1.0",
"standard-version": "^4.4.0"
},
"oclif": {
"commands": "./lib/commands",
"bin": "now-we-test",
"plugins": [
"@oclif/plugin-help"
]
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/lib"
],
"homepage": "https://github.com/lucasconstantino/now-we-test#readme",
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"collectCoverageFrom": [
"lib/**/*.js"
],
"moduleNameMapper": {
"^now-we-test(.*)$": "<rootDir>/lib$1"
}
},
"jsnext:main": "./lib/index.js",
"keywords": [
"lambda",
"local",
"now",
"serve",
"test",
"oclif"
],
"license": "MIT",
"main": "./lib/index.js",
"module": "./lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/lucasconstantino/now-we-test.git"
},
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"prepack": "oclif-dev manifest && oclif-dev readme",
"codecov": "yarn test && codecov",
"lint": "eslint lib tests",
"prepush": "npm test && npm run lint",
"prepublish": "npm test && npm run lint",
"test": "jest",
"release": "standard-version"
}
}