-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.19 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
{
"name": "text-with-benefits",
"version": "0.0.2",
"description": "Tiny library for storing data in strings",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && rollup -c",
"test": "jest",
"get-size": "npx js-compressed-size ./dist/index.js",
"lint": "eslint 'src/**/*.ts' --quiet --fix",
"prepare": "for file in `ls .git-hooks`; do ln -sf ../../.git-hooks/${file} .git/hooks/${file}; done"
},
"keywords": [
"text",
"data"
],
"author": "Lyoha Plotinka",
"repository": {
"type": "git",
"url": "https://github.com/lyohaplotinka/text-with-benefits.git"
},
"bugs": {
"url": "https://github.com/lyohaplotinka/text-with-benefits/issues"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.2",
"@types/jest": "^27.5.0",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^28.1.0",
"prettier": "^2.6.2",
"rollup": "^2.72.0",
"ts-jest": "^28.0.1",
"tslib": "^2.4.0",
"typescript": "^4.6.4"
}
}