-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 993 Bytes
/
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
{
"name": "post-task",
"version": "1.2.0",
"description": "A polyfill for the Scheduler API with a pre-configured progressively-enhanced function helps to split long-running tasks into chunks.",
"type": "module",
"exports": {
"types": "./index.d.ts",
"import": "./index.mjs",
"require": "./index.cjs"
},
"scripts": {
"pretest": "node --check index.mjs",
"test": "node --disable-warning=ExperimentalWarning ./index.spec.mjs",
"prepublishOnly": "sed 's/export default/module.exports =/g' ./index.mjs > index.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adevinta/post-task.git"
},
"keywords": [
"scheduler",
"postTask",
"INP",
"yield"
],
"author": {
"name": "Daniel Arthur Gallagher",
"email": "daniel.gallagher@adevinta.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/adevinta/post-task/issues"
},
"homepage": "https://github.com/adevinta/post-task#readme",
"devDependencies": {
"prettier": "3.4.2"
}
}