-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
{
"name": "@studio/lambda",
"version": "5.0.2",
"description": "JavaScript Studio lambda execution environment",
"author": "Maximilian Antoni <[email protected]>",
"homepage": "https://github.com/javascript-studio/studio-lambda",
"main": "lib/lambda.js",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"lint": "eslint .",
"test": "mocha --slow=500",
"watch": "npm run test -- --watch",
"start": "node .",
"preversion": "npm run lint && npm run prettier:check && npm test",
"version": "changes --commits --footer",
"postversion": "git push --follow-tags && npm publish",
"prettier:check": "prettier --check '**/*.{js,json,md}'",
"prettier:write": "prettier --write '**/*.{js,json,md}'",
"prepare": "husky"
},
"eslintConfig": {
"extends": "@studio"
},
"dependencies": {
"@studio/log": "^2.1.3",
"@studio/ndjson": "^2.1.0"
},
"devDependencies": {
"@sinonjs/referee-sinon": "^12.0.0",
"@studio/changes": "^3.0.0",
"@studio/eslint-config": "^6.0.0",
"eslint": "^8.56.0",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"mocha": "^10.7.3",
"prettier": "^3.3.3"
},
"files": [
"lib",
"LICENSE",
"README.md"
],
"license": "MIT"
}