-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.63 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
{
"name": "doi-ts",
"description": "A DOI library for use with fp-ts.",
"version": "0.1.10",
"license": "MIT",
"homepage": "https://github.com/thewilkybarkid/doi-ts",
"repository": "github:thewilkybarkid/doi-ts",
"source": "src/index.ts",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"peerDependencies": {
"fp-ts": "^2.11.0"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@fast-check/jest": "^1.6.0",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@tsconfig/recommended": "^1.0.1",
"@types/doi-regex": "^0.1.0",
"@types/node": "^16.11.26",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"del-cli": "^4.0.1",
"docs-ts": "^0.6.10",
"doi-regex": "^0.1.13",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"expect-type": "^0.13.0",
"fp-ts": "^2.11.9",
"husky": "^7.0.4",
"jest": "^29.4.3",
"prettier": "^2.6.2",
"prettier-plugin-sh": "^0.10.0",
"standard-version": "^9.3.2",
"ts-jest": "^29.0.5",
"typescript": "^4.6.3"
},
"scripts": {
"prebuild": "del dist",
"build": "tsc --project tsconfig.build.json",
"docs": "docs-ts",
"format": "prettier --ignore-unknown --check '**'",
"format:fix": "npm run format -- --write",
"lint": "eslint .",
"prepare": "which husky && husky install || true",
"release": "standard-version --sign",
"test": "jest",
"typecheck": "tsc --noEmit"
}
}