-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.53 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
{
"name": "ts-opaque",
"version": "3.0.1",
"description": "Easy-to-use library that implements opaque types in TypeScript!",
"license": "MIT",
"repository": "seancroach/ts-opaque",
"author": "Sean Colin Roach <[email protected]> (https://seancroach.dev)",
"main": "dist/index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"format": "prettier -w **",
"postinstall": "is-ci || husky install",
"postpublish": "pinst --enable",
"prepare": "tsc -p source",
"prepublishOnly": "pinst --disable",
"test": "prettier -c ** && tsc -p type-tests && ava"
},
"files": [
"dist"
],
"keywords": [
"brand",
"nominal",
"opaque",
"ts",
"typescript"
],
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@seancroach/eslint-config-typescript": "^3.0.8",
"@seancroach/tsconfig": "^2.1.0",
"ava": "^3.15.0",
"eslint": "^7.20.0",
"husky": "^5.0.9",
"is-ci": "^2.0.0",
"pinst": "^2.1.6",
"prettier": "^2.2.1",
"prettier-plugin-package": "^1.3.0",
"ts-node": "^9.1.1",
"tsd": "^0.14.0",
"typescript": "^4.1.3"
},
"types": "dist/index.d.ts",
"ava": {
"files": [
"tests/*.ts"
],
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"eslintConfig": {
"extends": "@seancroach/eslint-config-typescript"
},
"prettier": {
"proseWrap": "never"
}
}