-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.22 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": "tipe-apa",
"version": "0.4.7",
"description": "Simple JavaScript data type checker.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"dev": "NODE_ENV=development tsc -p tsconfig.json --watch",
"clean": "rm -rf dist",
"build": "yarn clean && tsc -p tsconfig.json && uglifyjs dist/index.js -c -m -o dist/index.js",
"test": "yarn clean && yarn build && jest",
"prepublish:patch": "yarn build && yarn version --patch",
"prepublish:minor": "yarn build && yarn version --minor",
"prepublish:major": "yarn build && yarn version --major",
"relink": "yarn unlink && tsc && yarn link"
},
"repository": {
"type": "git",
"url": "https://github.com/rafiandria23/tipe-apa"
},
"author": {
"name": "Adam Rafiandri",
"url": "https://github.com/rafiandria23"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.1.2",
"@types/node": "^22.0.0",
"jest": "^29.6.0",
"ts-jest": "^29.1.1",
"tslib": "^2.4.0",
"typescript": "^5.1.6",
"uglify-js": "^3.17.3"
},
"packageManager": "[email protected]+sha256.c17d3797fb9a9115bf375e31bfd30058cac6bc9c3b8807a3d8cb2094794b51ca"
}