-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 906 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 906 Bytes
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
{
"version": "0.1.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit"
},
"peerDependencies": {},
"size-limit": [
{
"path": "dist/pulse-feed-parser.cjs.production.min.js"
}
],
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"name": "pulse-feed-parser",
"author": "Eugene Dzhumak",
"module": "dist/pulse-feed-parser.esm.js",
"devDependencies": {
"@size-limit/preset-small-lib": "^4.5.5",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"size-limit": "^4.5.5",
"tsdx": "^0.13.2",
"tslib": "^2.0.0",
"typescript": "^3.9.7"
},
"dependencies": {}
}