generated from greguintow/typescript-config
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 1.84 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
{
"name": "automarker",
"main": "index.js",
"version": "2.0.0",
"description": "A tiny (163 bytes) highlighter",
"keywords": [
"autosuggest",
"highlight",
"highlighter",
"typeahead",
"autocomplete"
],
"author": "Greg Teixeira <[email protected]>",
"license": "MIT",
"sideEffects": false,
"types": "./index.d.ts",
"peerDependencies": {
"preact": "^10.0.0",
"react": "^16.8.0"
},
"peerDependenciesMeta": {
"preact": {
"optional": true
},
"react": {
"optional": true
}
},
"scripts": {
"start": "nodemon --watch \"src/\" --exec \"ts-node src/index.ts\" -e ts",
"dev": "nodemon",
"size": "size-limit",
"test": "jest"
},
"repository": {
"url": "git://github.com/greguintow/automarker.git"
},
"size-limit": [
{
"name": "core",
"path": "index.js",
"limit": "163 B",
"ignore": [
"remove-accents"
]
},
{
"name": "core + react hook",
"path": "react/index.js",
"limit": "192 B",
"ignore": [
"react",
"remove-accents"
]
},
{
"name": "core + preact hook",
"path": "preact/index.js",
"limit": "192 B",
"ignore": [
"preact/hooks",
"remove-accents"
]
}
],
"dependencies": {
"escape-string-regexp": "4.0.0",
"remove-accents": "^0.5.0"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^4.5.3",
"@types/jest": "^26.0.4",
"@types/node": "^14.0.18",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"eslint": "^7.4.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.1.0",
"preact": "^10.4.4",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"size-limit": "^4.5.3",
"typescript": "^3.9.6"
}
}