-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.01 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
{
"name": "selector",
"version": "2.1.1",
"description": "Generic selector library",
"main": "dist/index.js",
"module": "dist/selector.esm.js",
"typings": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/arnaud-zg/selector.git"
},
"homepage": "https://github.com/arnaud-zg/selector",
"bugs": {
"url": "https://github.com/arnaud-zg/selector/issues"
},
"files": [
"dist",
"types"
],
"keywords": [
"selector",
"typescript"
],
"scripts": {
"build": "tsdx build",
"lint": "tsdx lint src test",
"release": "standard-version",
"start": "tsdx watch",
"test:coverage:report": "yarn run test:coverage && codecov -f coverage/*.json",
"test:coverage": "tsdx test --coverage",
"test": "tsdx test",
"prepare": "husky install"
},
"peerDependencies": {},
"devDependencies": {
"@types/jest": "27.5.2",
"codecov": "3.8.3",
"husky": "8.0.3",
"tsdx": "0.14.1",
"tslib": "2.7.0",
"typescript": "4.9.5"
}
}