-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.99 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": "cassava",
"version": "2.7.1",
"description": "AWS API Gateway Router",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"clean": "rimraf ./dist",
"docs": "rimraf ./docs && typedoc src/ --out docs --mode modules --module commonjs --target es6 --excludePrivate --exclude \"**/*.test.ts\" --name Cassava && touch ./docs/.nojekyll && gh-pages -d docs -t",
"lint": "eslint . --ext .ts,.tsx",
"prepublishOnly": "npm run clean && npm run build && npm run lint && npm run test && npm run docs",
"test": "mocha --recursive --throw-deprecation --require ts-node/register \"src/**/*.test.ts\"",
"test:watch": "npm run test -- --watch --watch-extensions ts,tsx --growl"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pushplay/cassava.git"
},
"keywords": [
"routing",
"router",
"routebuilder",
"route-builder",
"apigateway",
"lambda",
"serverless",
"aws",
"cassava"
],
"contributors": [
"Jeffery Grajkowski <pushplay@gmail.com> (https://github.com/pushplay/)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pushplay/cassava/issues"
},
"homepage": "https://github.com/pushplay/cassava#readme",
"devDependencies": {
"@types/aws-lambda": "^8.10.61",
"@types/chai": "^4.2.12",
"@types/cookie": "^0.4.0",
"@types/mitm": "^1.3.3",
"@types/mocha": "^8.0.3",
"@types/negotiator": "^0.6.1",
"@types/node": "^10.12.18",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.0.1",
"@typescript-eslint/parser": "^4.0.1",
"chai": "^4.2.0",
"eslint": "^7.8.1",
"gh-pages": "^3.1.0",
"mitm": "^1.7.1",
"mocha": "^8.1.3",
"rimraf": "^3.0.2",
"touch": "^3.1.0",
"ts-node": "^9.0.0",
"typedoc": "^0.19.0",
"typescript": "^4.0.2"
},
"dependencies": {
"cookie": "^0.4.1",
"jsonschema": "^1.2.6",
"negotiator": "^0.6.2",
"uuid": "^8.3.0"
}
}