-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 881 Bytes
/
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
{
"name": "memo-json",
"version": "0.1.3",
"description": "",
"homepage": "https://github.com/piglovesyou/memo-json",
"main": "lib/index.js",
"keywords": [],
"author": "",
"license": "Apache-2.0",
"files": [
"lib"
],
"devDependencies": {
"@babel/plugin-proposal-decorators": "7.25.9",
"@babel/preset-env": "7.26.0",
"@babel/preset-typescript": "7.26.0",
"@types/debug": "4.1.12",
"@types/jest": "29.5.14",
"@types/node": "22.9.0",
"husky": "8.0.3",
"jest": "29.7.0",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "4.1.0",
"pretty-quick": "4.0.0",
"typescript": "5.6.3"
},
"dependencies": {
"debug": "4.3.7",
"make-dir": "4.0.0"
},
"scripts": {
"test": "jest",
"build": "rm -rf lib && tsc -p tsconfig.production.json",
"prepublishOnly": "yarn build && yarn test"
}
}