-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.56 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
{
"name": "@peak-ai/event-dependent-promises",
"version": "1.0.7",
"description": "Proxy async methods to await prerequisite EventEmitter events",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"lint": "eslint jest.config*js 'src/**/*.ts'",
"format": "prettier --write jest.config*js 'src/**/*.ts'",
"format:check": "prettier --check jest.config*js 'src/**/*.ts'",
"build": "tsc -p .",
"preupdate": "yarn lint && yarn build && yarn test:dist",
"prepublishOnly": "yarn format:check && yarn preupdate",
"test": "jest",
"test:dist": "jest --config jest.config.dist.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peak-ai/event-dependent-promises.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"promise",
"async",
"await",
"eventemitter",
"dependency"
],
"author": "James Wright <james.wright@peak.ai>",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/peak-ai/event-dependent-promises/issues"
},
"engines": {
"node": ">=8"
},
"homepage": "https://github.com/peak-ai/event-dependent-promises#readme",
"devDependencies": {
"@types/jest": "24.9.0",
"@types/node": "13.7.0",
"@typescript-eslint/eslint-plugin": "2.19.0",
"@typescript-eslint/parser": "2.19.0",
"eslint": "6.8.0",
"husky": "4.2.3",
"jest": "24.9.0",
"prettier": "1.19.1",
"ts-jest": "24.1.0",
"typescript": "3.7.5"
},
"husky": {
"hooks": {
"pre-commit": "yarn format && yarn preupdate"
}
}
}