-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 1.41 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
{
"name": "@segment/tsub",
"version": "2.0.0",
"description": "Tsub for JS",
"main": "dist/index.js",
"browser": "dist/index.js",
"bin": "dist/index.js",
"scripts": {
"test": "jest",
"build": "rm -rf dist && tsc",
"lint": "tslint src/**/*.ts",
"lint_test": "tslint src/**/*.test.ts"
},
"repository": "git+https://github.com/segmentio/tsub-js.git",
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/segmentio/tsub-js/issues"
},
"homepage": "https://github.com/segmentio/tsub-js#readme",
"dependencies": {
"@stdlib/math-base-special-ldexp": "^0.0.5",
"dlv": "^1.1.3",
"dset": "^3.1.1",
"tiny-hashes": "^1.0.1"
},
"devDependencies": {
"@types/jest": "^27.4.0",
"jest": "^27.4.7",
"size-limit": "^7.0.5",
"ts-jest": "^27.1.3",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.5.5"
},
"resolutions": {
"ini": "1.3.6",
"dot-prop": "^6.0.1"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "3.35 KB"
}
],
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 100
},
"lint-staged": {
"linters": {
"*.ts": [
"prettier --write",
"git add"
],
"*.json": [
"prettier --write",
"git add"
]
},
"ignore": [
"examples/**/generated/**",
"**/__snapshots__/**"
]
}
}