-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.01 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
{
"name": "cancellation-token-source",
"version": "0.1.0",
"description": "CancellationTokenSource implementation for JavaScript",
"keywords": [
"cancellation",
"cancellation token",
"cancellation token source",
"token source",
"cancel",
"cts"
],
"main": "dist/index.js",
"repository": "https://github.com/xapphire13/cancellationTokenSource.js.git",
"author": "Steven Hobson-Campbell <xapphire13@live.com>",
"license": "MIT",
"private": false,
"types": "./dist/index.d.ts",
"scripts": {
"build": "rimraf ./dist && tsc",
"generate-docs": "rimraf ./docs && typedoc --readme ./README.md --out ./docs --exclude **/*/index.* --excludeExternals --excludePrivate --mode modules --entryPoint cancellation-token-source",
"test": "jest"
},
"devDependencies": {
"@types/jest": "^23.3.9",
"jest": "^23.6.0",
"rimraf": "^2.6.2",
"ts-jest": "^23.10.4",
"typedoc": "^0.13.0",
"typedoc-plugin-external-module-name": "^1.1.3",
"typescript": "^3.1.6"
}
}