forked from silvermine/lambda-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.03 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
{
"name": "@silvermine/lambda-express",
"version": "0.2.0",
"description": "",
"main": "./dist/commonjs/index",
"types": "./dist/types/index.d.ts",
"module": "./dist/esm/index",
"scripts": {
"prepare": "grunt build",
"test": "TS_NODE_PROJECT='tests/tsconfig.json' TS_NODE_FILES=true nyc mocha --opts ./.mocha.opts"
},
"author": "Jeremy Thomerson",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/silvermine/lambda-express.git"
},
"bugs": {
"url": "https://github.com/silvermine/lambda-express/issues"
},
"homepage": "https://github.com/silvermine/lambda-express#readme",
"engines": {
"node": ">=8.10.0",
"npm": "6.4.1"
},
"devDependencies": {
"@commitlint/travis-cli": "7.5.2",
"@silvermine/chai-strictly-equal": "1.1.0",
"@silvermine/eslint-config": "2.1.0",
"@silvermine/typescript-config": "0.9.0",
"@types/aws-lambda": "8.10.17",
"@types/chai": "4.1.7",
"@types/cookie": "0.3.2",
"@types/mocha": "5.2.5",
"@types/node": "8.10.36",
"@types/qs": "6.5.1",
"@types/sinon": "5.0.5",
"@types/underscore": "1.8.9",
"chai": "4.2.0",
"coveralls": "3.0.2",
"cz-conventional-changelog": "2.1.0",
"grunt": "1.0.4",
"grunt-cli": "1.3.1",
"grunt-concurrent": "2.3.1",
"grunt-contrib-clean": "2.0.0",
"grunt-contrib-watch": "1.1.0",
"grunt-eslint": "21.0.0",
"grunt-exec": "3.0.0",
"mocha": "5.2.0",
"nyc": "13.1.0",
"sinon": "5.1.1",
"source-map-support": "0.5.9",
"standard-version": "git+https://github.com/jthomerson/standard-version.git#fix-305-header-repeat",
"ts-node": "7.0.1",
"typescript": "3.2.2"
},
"dependencies": {
"cookie": "0.3.1",
"path-to-regexp": "0.1.7",
"qs": "6.6.0",
"tslib": "1.9.3",
"underscore": "1.9.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}