-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 4.52 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "type-guard-helpers",
"version": "1.1.21",
"description": "A set of helper functions for type guarding in Typescript.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"module": "module/index.js",
"repository": "https://github.com/nicobrinkkemper/type-guard-helpers",
"license": "MIT",
"keywords": [],
"scripts": {
"clean": "rm -rf build lib module tsconfig.lib.tsbuildinfo tsconfig.module.tsbuildinfo",
"build": "run-s clean build:* fixup",
"build:spec": "tsc -p tsconfig.json",
"build:lib": "tsc -p tsconfig.lib.json",
"build:module": "tsc -p tsconfig.module.json",
"fixup": "./fixup.sh",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/*.ts\" --write",
"fix:prettier-spec": "prettier \"spec/*.ts\" --write",
"fix:lint": "eslint src --ext .ts --fix",
"fix:lint-spec": "eslint spec --ext .ts --fix",
"test": "run-s build test:*",
"test:lint": "eslint src --ext .ts",
"test:lint-spec": "eslint spec --ext .ts",
"test:tsd": "tsd",
"test:prettier": "prettier \"src/*.ts\" --list-different; exit 0",
"test:prettier-spec": "prettier \"spec/*.ts\" --list-different; exit 0",
"spelling": "cspell \"{README.md,.github/*.md,src/*.ts,spec/*.ts}\"",
"test:unit": "nyc --silent ava",
"develop": "run-p develop:*",
"develop:unit": "ava --verbose --watch",
"develop:lib": "tsc -p tsconfig.lib.json -w",
"develop:spec": "tsc -p tsconfig.json -w",
"check-cli": "run-s test diff-integration-tests check-integration-tests",
"check-integration-tests": "run-s check-integration-test:*",
"diff-integration-tests": "mkdir -p diff && rm -rf diff/test && cp -r test diff/test && rm -rf diff/test/test-*/.git && cd diff && git init --quiet && git add -A && git commit --quiet --no-verify --allow-empty -m 'WIP' && echo '\\n\\nCommitted most recent integration test output in the \"diff\" directory. Review the changes with \"cd diff && git diff HEAD\" or your preferred git diff viewer.'",
"watch:build": "tsc -p tsconfig.lib.json -w",
"watch:test": "nyc --silent ava --watch",
"cov": "run-s build test:unit cov:html cov:lcov && open-cli coverage/index.html",
"cov:html": "nyc report --reporter=html",
"cov:lcov": "nyc report --reporter=lcov",
"cov:send": "run-s cov:lcov && codecov",
"cov:check": "nyc report && nyc check-coverage --lines 95 --functions 80 --branches 70",
"doc": "run-s doc:html && open-cli build/docs/index.html",
"doc:html": "typedoc src --exclude spec/ --out build/docs --tsconfig ./tsconfig.json",
"doc:json": "typedoc src --exclude spec/ --json build/docs/typedoc.json --readme ./README.md --tsconfig ./tsconfig.json --excludeNotDocumented",
"doc:publish": "gh-pages -m \"[ci skip] Updates\" -d build/docs",
"version": "standard-version",
"reset-hard": "git clean -dfx && git reset --hard && npm i",
"prepare-dryrun": "npm pack --dry-run",
"prepare-release": "run-s reset-hard test cov:check doc:html version doc:publish"
},
"resolutions": {},
"devDependencies": {
"@ava/typescript": "^3.0.1",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"ava": "^5.2.0",
"codecov": "^3.8.3",
"cspell": "^6.26.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-functional": "^5.0.4",
"eslint-plugin-import": "^2.27.5",
"gh-pages": "^5.0.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"open-cli": "^7.1.0",
"prettier": "^2.8.4",
"source-map-support": "^0.5.21",
"standard-version": "^9.5.0",
"ts-node": "^10.9.1",
"tsd": "^0.25.0",
"typedoc": "^0.23.25",
"typescript": "^4.9.5"
},
"files": [
"lib",
"module",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"exports": {
".": {
"import": "./module/index.js",
"require": "./lib/index.js"
}
},
"tsd": {
"directory": "./spec"
},
"ava": {
"failFast": true,
"timeout": "60s",
"typescript": {
"rewritePaths": {
"src/": "lib/"
},
"compile": false
},
"files": [
"!src/**",
"!module/**",
"!spec/**"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": {
"singleQuote": true
},
"nyc": {
"exclude": [
"**/spec/**"
]
},
"dependencies": {
"ansi-regex": "^6.0.1",
"commitizen": "^4.3.0"
}
}