-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
69 lines (69 loc) · 2.55 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.3.1",
"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",
"check-node-version": "check-node-version --npm 10.5.0",
"commitlint": "commitlint --from 86324da",
"eslint": "eslint '{,!(node_modules|dist)/**/}*.{js,ts}'",
"markdownlint": "markdownlint -c .markdownlint.json -i CHANGELOG.md '{,!(node_modules)/**/}*.md'",
"standards": "tsc -p tsconfig.json --pretty && npm run markdownlint && npm run eslint",
"release:preview": "node ./node_modules/@silvermine/standardization/scripts/release.js preview",
"release:prep-changelog": "node ./node_modules/@silvermine/standardization/scripts/release.js prep-changelog",
"release:finalize": "node ./node_modules/@silvermine/standardization/scripts/release.js finalize"
},
"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",
"devDependencies": {
"@silvermine/chai-strictly-equal": "1.1.1",
"@silvermine/eslint-config": "3.2.0",
"@silvermine/standardization": "2.0.0",
"@silvermine/typescript-config": "1.0.0",
"@types/aws-lambda": "8.10.140",
"@types/chai": "4.1.7",
"@types/cookie": "0.3.2",
"@types/mocha": "5.2.5",
"@types/node": "20.12.2",
"@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": "3.1.0",
"eslint": "8.57.0",
"grunt": "1.4.1",
"grunt-cli": "1.3.2",
"grunt-concurrent": "2.3.1",
"grunt-contrib-clean": "2.0.0",
"grunt-contrib-watch": "1.1.0",
"grunt-exec": "3.0.0",
"mocha": "8.4.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": "5.7.2"
},
"dependencies": {
"@silvermine/toolbox": "0.1.0",
"cookie": "0.3.1",
"path-to-regexp": "0.1.7",
"qs": "6.6.0",
"tslib": "1.9.3",
"underscore": "1.9.1"
}
}