-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.27 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
47
{
"name": "supasut",
"version": "0.8.0",
"description": "Utility library made with love.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"preinstall": "npx only-allow pnpm",
"test": "jest --collectCoverage",
"build": "rollup -c && pnpm uglify",
"uglify": "uglifyjs dist/index.js -c -m -o dist/index.min.js",
"release": "pnpm build && changeset publish",
"lint": "eslint"
},
"keywords": [
"utiliy"
],
"author": {
"name": "Enrique Bermúdez",
"email": "[email protected]",
"url": "https://enbermudas.dev/"
},
"license": "MIT",
"devDependencies": {
"@babel/preset-typescript": "^7.22.5",
"@changesets/cli": "^2.26.2",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.5",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^8.9.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.2",
"prettier": "^3.0.0",
"rollup": "^3.27.0",
"rollup-plugin-typescript2": "^0.35.0",
"ts-jest": "^29.1.1",
"tslib": "^2.6.1",
"typescript": "^5.1.6",
"uglify-js": "^3.17.4"
},
"repository": {
"type": "git",
"url": "https://github.com/enbermudas/supasut"
}
}