-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.44 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
{
"name": "advanced-promises",
"version": "1.0.0-beta.13",
"description": "Advanced promise types",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"private": false,
"devDependencies": {
"@types/mocha": "^7.0.1",
"@types/node": "^13.7.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^7.0.1",
"prettier": "^1.19.1",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0",
"tslint-no-unused-expression-chai": "^0.1.4",
"typedoc": "^0.17.4",
"typescript": "^3.8.3"
},
"repository": {
"type": "git",
"url": "https://github.com/WHenderson/advanced-promises.git"
},
"homepage": "https://github.com/WHenderson/advanced-promises#readme",
"keywords": [
"promise",
"promises",
"abortable",
"abortable promise",
"cancellable",
"cancellable promise",
"timeout",
"timeout promise",
"process",
"process promise",
"async",
"advanced-promises"
],
"license": "Apache-2.0",
"author": {
"name": "Will Henderson",
"email": "[email protected]"
},
"scripts": {
"build:src": "tsc",
"build:doc": "typedoc",
"build": "yarn run build:src && yarn run build:doc",
"pretest": "yarn run build:src",
"test": "mocha",
"prepublishOnly": "yarn run build:src",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json"
},
"files": [
"dist/src/**/*"
]
}