-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.22 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.22 KB
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
{
"name": "@rozhkov/one-task",
"version": "0.0.0-development",
"description": "Sequential running of tasks with a cancellation token",
"license": "MIT",
"sideEffects": false,
"scripts": {
"build": "yarn run clean && yarn run build:esm && yarn run build:cjs",
"build:esm": "tsc -p ./tsconfig.esm.json && mv ./lib/esm/index.js ./lib/esm/index.mjs",
"build:cjs": "tsc -p ./tsconfig.cjs.json",
"tsc:check": "yarn tsc:esm:check && yarn tsc:cjs:check",
"tsc:esm:check": "tsc --noEmit -p ./tsconfig.esm.json",
"tsc:cjs:check": "tsc --noEmit -p ./tsconfig.cjs.json",
"eslint:fix": "eslint . --fix",
"eslint:check": "eslint .",
"prepack": "yarn run build",
"test": "jest",
"clean": "rm -rf ./lib",
"semantic-release": "semantic-release"
},
"files": [
"lib/**/*",
"src/**/*",
"!**/__tests__",
"package.json",
"README.md"
],
"types": "./lib/cjs/types/index.d.ts",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.mjs",
"react-native": "./src/index.ts",
"exports": {
".": {
"import": {
"types": "./lib/esm/types/index.d.ts",
"default": "./lib/esm/index.mjs"
},
"require": {
"types": "./lib/cjs/types/index.d.ts",
"default": "./lib/cjs/index.js"
}
}
},
"devDependencies": {
"@types/jest": "^29.5.6",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.9.1",
"eslint": "^8.0.1",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "3.0.3",
"semantic-release": "^22.0.6",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"author": {
"name": "Sergey Rozhkov",
"email": "rozhkovse1@gmail.com"
},
"keywords": [
"transaction",
"concurrency",
"concurrent",
"manager",
"queue",
"synchronous",
"one",
"task",
"job",
"asynchronous",
"async",
"promise",
"control"
],
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/rozhkovs/one-task.git"
}
}