-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
93 lines (93 loc) · 2.13 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "thumbor-ts",
"version": "1.3.528",
"description": "Typescript thumbor url builder",
"repository": "github:brettm12345/thumbor-ts",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "src",
"test": "test"
},
"files": [
"dist"
],
"scripts": {
"build": "tsdx build --target node",
"lint": "eslint {src,test}/*.ts --format=pretty",
"lint:fix": "yarn lint --fix",
"size": "bundlesize",
"start": "tsdx watch --target node",
"test": "tsdx test",
"test:ci": "yarn test --ci",
"test:ci:coverage": "yarn test:ci --coverage",
"test:coverage": "yarn test --coverage",
"test:watch": "yarn test --watch"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.json": "prettier --write",
"*.md": [
"markdownlint -c ./.markdownlint.json -f -s",
"prettier --write"
],
"*.ts": "yarn lint:fix",
"package.json": [
"sort-package-json",
"prettier --write"
]
},
"prettier": {
"printWidth": 70,
"singleQuote": true,
"trailingComma": "none"
},
"jest": {
"coveragePathIgnorePatterns": [
"manipulations.ts"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"dependencies": {
"crypto-js": "4.1.1",
"fp-ts": "2.13.1",
"list": "2.0.19",
"monocle-ts": "2.3.13"
},
"devDependencies": {
"@brettm12345/eslint-config-node": "1.0.6",
"@types/crypto-js": "4.1.1",
"@types/jest": "29.4.0",
"@typescript-eslint/parser": "5.49.0",
"bundlesize": "0.18.1",
"eslint": "8.32.0",
"eslint-formatter-pretty": "4.1.0",
"eslint-plugin-jest": "27.2.1",
"eslint-plugin-prefer-arrow-functions": "3.1.4",
"husky": "8.0.3",
"lint-staged": "13.1.0",
"markdownlint-cli": "0.33.0",
"prettier": "2.8.3",
"sort-package-json": "2.2.0",
"tsdx": "0.14.1",
"typescript": "4.9.5"
},
"bundlesize": [
{
"path": "dist/*.production.min.js",
"limit": "4kB"
}
]
}