-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.11 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
{
"name": "isa-util",
"version": "1.0.15",
"description": "js,ts,utll,helper",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --watchAll",
"publish:npm": "rimraf dist && babel src -d dist --extensions \".ts\" --ignore **/*.test.ts",
"publish:type": "tsc --declaration --allowJs --emitDeclarationOnly --outDir dist",
"build": "yarn publish:npm && yarn publish:type"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yoonjonglyu/util-helper.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/yoonjonglyu/util-helper/issues"
},
"homepage": "https://github.com/yoonjonglyu/util-helper#readme",
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^29.2.4",
"babel-jest": "^29.3.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.4.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
},
"dependencies": {}
}