-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.85 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
{
"name": "@tricot-inc/requestidlecallback-polyfill",
"description": "requestIdleCallback Polyfill",
"version": "0.0.1",
"repository": {
"type": "git",
"url": "git+https://github.com/tricot-inc/requestidlecallback-polyfill.git"
},
"homepage": "https://github.com/tricot-inc/requestidlecallback-polyfill#readme",
"bugs": {
"url": "https://github.com/tricot-inc/requestidlecallback-polyfill/issues"
},
"author": "tricot-inc",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"clean": "rimraf lib",
"prebuild": "yarn clean",
"build": "tsc -p .",
"lint": "gts lint './**/*.ts'",
"format": "run-p -l format:*",
"format:prettier": "prettier --config ./.prettierrc.js --write '**/*.+(ts|js|md|json)'",
"format:ts": "yarn gts fix '**/*.ts'",
"test": "jest",
"release:patch": "standard-version --release-as patch",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"prepublish": "yarn build"
},
"keywords": [
"requestidlecallback",
"polyfill"
],
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^16.4.7",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"eslint": "^7.31.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"gts": "^3.1.0",
"jest": "^27.0.6",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"standard-version": "^9.3.1",
"ts-jest": "^27.0.4",
"typescript": "^4.3.5"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"standard-version": {
"scripts": {
"postchangelog": "yarn format"
}
}
}