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
65 lines (65 loc) · 1.92 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
{
"name": "@wavevision/timer",
"version": "1.0.1",
"description": "Simple resumable timeout handler written in TypeScript.",
"keywords": [
"browser",
"node",
"resumable",
"timeout",
"timer",
"typescript"
],
"main": "dist/index.js",
"files": [
"dist"
],
"types": "dist",
"author": "Wavevision s.r.o. <[email protected]>",
"contributors": [
{
"name": "Vít Rozsíval",
"email": "[email protected]"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/wavevision/timer.git"
},
"bugs": {
"url": "https://github.com/wavevision/timer/issues"
},
"homepage": "https://github.com/wavevision/timer",
"devDependencies": {
"@types/jest": "^26.0.15",
"@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",
"typescript": "^4.0.5"
},
"scripts": {
"build": "NODE_ENV=production run-s clean ts-build",
"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",
"postversion": "run-s postversion-push-tags postversion-publish postversion-push postversion-echo",
"postversion-echo": "echo \"Successfully released version $npm_package_version!\"",
"postversion-publish": "yarn publish --access public --new-version $npm_package_version",
"postversion-push": "git push",
"postversion-push-tags": "yarn postversion-push --tags",
"prettier": "prettier '**/*.{md,ts}' --check",
"prettier-fix": "yarn prettier --write",
"prepare": "npm run build",
"preversion": "yarn fix",
"test": "jest",
"test-coverage": "yarn test --coverage",
"ts": "tsc",
"ts-build": "yarn ts --project tsconfig.build.json"
}
}