UNPKG

1.06 kBJSONView Raw
1{
2 "name": "cancel-token",
3 "version": "0.1.1",
4 "description": "Implementation of https://github.com/littledan/proposal-cancelable-promises",
5 "main": "lib/cancel-token.js",
6 "typings": "lib/cancel-token.d.ts",
7 "scripts": {
8 "build": "tsc",
9 "test": "npm run build && mocha lib/test",
10 "prepublish": "npm test",
11 "test:watch": "watchy -w src/ -- npm test --loglevel=silent"
12 },
13 "repository": {
14 "type": "git",
15 "url": "git+https://github.com/rictic/cancel-token.git"
16 },
17 "keywords": [
18 "cancel-token",
19 "cancellation",
20 "cancelation"
21 ],
22 "author": "Peter Burns <rictic@google.com>",
23 "license": "BSD-3-Clause",
24 "bugs": {
25 "url": "https://github.com/rictic/cancel-token/issues"
26 },
27 "homepage": "https://github.com/rictic/cancel-token#readme",
28 "devDependencies": {
29 "@types/chai": "^3.4.34",
30 "@types/mocha": "^2.2.33",
31 "chai": "^3.5.0",
32 "mocha": "^3.2.0",
33 "tslint": "^4.1.0",
34 "typescript": "^2.1.4",
35 "watchy": "^0.6.6"
36 },
37 "dependencies": {
38 "@types/node": "^4.0.30"
39 }
40}