-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.32 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
{
"name": "indigobird",
"version": "0.3.1",
"description": "A complement to bluebird which is also probably slightly better.",
"keywords": [
"bluebird",
"promise",
"promises",
"concurrency",
"map",
"forEach",
"simultaneous",
"parallel",
"some",
"any",
"all",
"partial",
"success",
"functional"
],
"author": "Tomas Savigliano",
"license": "MIT",
"main": "./lib/index.js",
"files": [
"/lib"
],
"scripts": {
"build": "npx ttsc",
"start": "npm run build",
"test": "npm run build && mocha -r ts-node/register tests/**/*.test.ts",
"prettify": "npx prettier --write '**/*.ts'"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged && npm run build"
}
},
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "12.7.5",
"@types/uuid": "3.4.5",
"@types/validator": "10.11.3",
"bluebird": "3.7.2",
"chai": "4.2.0",
"husky": "4.2.5",
"mocha": "7.1.2",
"prettier": "2.0.5",
"pretty-quick": "2.0.1",
"ts-node": "^8.10.1",
"tslint": "5.20.1",
"tslint-config-prettier": "1.18.0",
"tslint-plugin-prettier": "2.0.1",
"ttypescript": "^1.5.10",
"typescript": "^3.9.2",
"typescript-transform-paths": "^1.1.14"
}
}