-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.5 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
{
"name": "completable-promise",
"version": "1.3.0",
"description": "CompletablePromise library allows to create a Promise instance that does not start its resolution upon its declaration.",
"keywords": [
"completable-promise",
"completable",
"promise",
"promise-library"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npx tsc",
"test": "mocha -r ts-node/register test/**/*.spec.ts",
"coverage": "node .github/script/generate-coverage.mjs",
"doc": "node .github/script/generate-typedoc.mjs",
"lint": "eslint \"src/**\" \"test/**\"",
"prepublishOnly": "npm test",
"prepare": "npm run build"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/gturi/completable-promise.git"
},
"author": "Giacomo Venturini",
"license": "MIT",
"bugs": {
"url": "https://github.com/gturi/completable-promise/issues"
},
"homepage": "https://github.com/gturi/completable-promise#readme",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"eslint": "^8.24.0",
"eslint-plugin-import": "^2.26.0",
"mocha": "^10.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"ts-node": "^10.2.0",
"typedoc": "^0.24.6",
"typescript": "^5.0.4"
},
"publishConfig": {
"access": "public"
}
}