-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.33 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
{
"name": "amemo",
"version": "2.0.0",
"description": "amemo is an experimental drop-in typesafe memoization library",
"repository": "https://github.com/enda-automation/amemo",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"type": "module",
"scripts": {
"test": "jest",
"build": "esbuild --bundle --platform=node --sourcemap --minify --format=esm src/amemo.ts --outfile=dist/index.js",
"coverage": "make-coverage-badge --output-path ./badges/coverage.svg",
"prepublish": "tsc",
"format": "prettier --write src/ tests/",
"format:check": "prettier --check src/ tests/",
"lint": "eslint src/ tests/",
"release": "standard-version && npm run build && npm run prepublish"
},
"keywords": [],
"author": "Engin Aydogan <engin.aydogan@enda.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@babel/preset-typescript": "^7.24.1",
"@jest/globals": "^29.7.0",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"babel-jest": "^29.7.0",
"esbuild": "^0.20.2",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"jest-mock": "^29.7.0",
"make-coverage-badge": "^1.2.0",
"prettier": "^3.2.5",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.4"
}
}