-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.78 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": "cancellationtoken",
"version": "v2.3.0-rc1",
"description": "A composable token for cancelling asynchronous operations.",
"author": "Conrad Reuter <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/conradreuter/cancellationtoken#readme",
"repository": "conradreuter/cancellationtoken",
"bugs": "https://github.com/conradreuter/cancellationtoken/issues",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"src/",
"README.md"
],
"keywords": [
"abort",
"async",
"cancel",
"cancellation",
"job",
"promise",
"task",
"token"
],
"scripts": {
"build": "tsc",
"clean": "rimraf dist/",
"test": "jest -c jest.json --coverage",
"watch": "jest -c jest.json --watch",
"example": "ts-node -P examples/tsconfig.json -r tsconfig-paths/register examples/run.ts",
"info": "npm-scripts-info",
"prepublish": "yarn clean && yarn build"
},
"scripts-info": {
"build": "Build the project.",
"clean": "Clean the build directory.",
"example": "Run a usage example.",
"test": "Run the unit tests once with code coverage.",
"watch": "Run the unit tests in watch mode.",
"info": "Print this info."
},
"dependencies": {},
"devDependencies": {
"@babel/core": "7.16.0",
"@babel/preset-env": "7.16.4",
"@babel/preset-typescript": "7.16.0",
"@types/jest": "27.0.3",
"@types/node": "16.11.11",
"all-contributors-cli": "6.20.0",
"babel-jest": "27.4.2",
"jest": "27.4.3",
"npm-scripts-info": "0.3.9",
"prettier": "2.5.0",
"rimraf": "3.0.2",
"ts-jest": "27.0.7",
"ts-node": "10.4.0",
"tsconfig-paths": "3.12.0",
"typescript": "4.2.4"
},
"volta": {
"node": "14.16.1",
"yarn": "1.22.10"
}
}