-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.03 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
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "alls",
"description": "Just another library with the sole purpose of waiting till all promises to complete.; Nothing more, Nothing less.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"version": "1.0.4",
"scripts": {
"pretest": "npm run build",
"test": "nyc mocha",
"test-coverage-report": "npm test && cat ./coverage/lcov.info | codacy-coverage && rm -rf ./coverage",
"build": "tsc",
"format": "prettier --write \"**/*.ts\" \"**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A lib",
"postversion": "git push && git push --tags",
"doc-gen": "typedoc --out doc --theme minimal `find test -name '*.ts' -not -path '*test*' -not -path '*dist*'`"
},
"author": "Ruwan Geeganage",
"license": "MIT",
"devDependencies": {
"@types/bluebird": "^3.5.25",
"@types/mocha": "^5.2.5",
"@types/q": "^1.5.1",
"axios": "^0.18.0",
"bluebird": "^3.5.3",
"codacy-coverage": "^3.3.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"prettier": "^1.14.3",
"q": "^1.5.1",
"should": "^13.2.3",
"source-map-support": "^0.5.9",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.0.3"
},
"repository": {
"type": "git",
"url": "git://github.com/rpgeeganage/alls.git"
},
"bugs": {
"url": "https://github.com/rpgeeganage/alls/issues"
},
"homepage": "https://github.com/rpgeeganage/alls#readme",
"dependencies": {},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"test/*.ts",
"examples/*.ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"lcov",
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"keywords": [
"Promise",
"Async/Await",
"Promise.all",
"Promise all settle",
"all settled",
"allSettled"
]
}