This repository has been archived by the owner on Jul 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.1 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
{
"name": "@wavevision/ts-utils",
"version": "1.0.1",
"description": "Useful TypeScript utilities and helpers.",
"keywords": [
"typescript",
"utils",
"utilities",
"helpers"
],
"main": "dist/index.js",
"types": "dist",
"author": "Wavevision s.r.o. <info@wavevision.com>",
"contributors": [
{
"name": "Vít Rozsíval",
"email": "vit@wavevision.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/wavevision/ts-utils.git"
},
"bugs": {
"url": "https://github.com/wavevision/ts-utils/issues"
},
"homepage": "https://github.com/wavevision/ts-utils",
"dependencies": {},
"devDependencies": {
"@types/jest": "^26.0.15",
"@types/node": "^12.19.3",
"@types/react": "^16.9.55",
"@wavevision/coding-standard": "^6.0.2",
"eslint": "^7.12.1",
"eslint-plugin-jest": "^24",
"jest": "^26.6.1",
"npm-run-all": "^4.1.5",
"ts-jest": "^26.4.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"peerDependencies": {
"@types/node": "^12",
"@types/react": "^16"
},
"scripts": {
"build": "NODE_ENV=production run-s clean ts-build package",
"ci": "run-s ts eslint prettier test-coverage",
"clean": "rm -rf dist/*",
"eslint": "eslint src --cache --ext .ts",
"eslint-fix": "yarn eslint --fix",
"fix": "run-s ts eslint-fix prettier-fix test",
"package": "ts-node -T -P tsconfig.json bin/package.ts",
"postversion": "run-s build postversion-push-tags postversion-publish postversion-push postversion-echo",
"postversion-echo": "echo \"Successfully released version $npm_package_version!\"",
"postversion-publish": "cd dist && yarn publish --access public --new-version $npm_package_version",
"postversion-push": "git push",
"postversion-push-tags": "yarn postversion-push --tags",
"prettier": "prettier '**/*.{js,md,ts}' --check",
"prettier-fix": "yarn prettier --write",
"preversion": "yarn fix",
"test": "jest",
"test-coverage": "yarn test --coverage",
"ts": "tsc",
"ts-build": "yarn ts --project tsconfig.build.json"
}
}