-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 959 Bytes
/
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
{
"name": "promex",
"version": "0.1.1",
"description": "Deferred promise",
"keywords": [
"javascript",
"promise"
],
"license": "MIT",
"author": "temich <[email protected]>",
"homepage": "https://github.com/toa-io/match#readme",
"main": "transpiled/Promex.js",
"types": "transpiled/Promex.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/toa-io/promex.git"
},
"bugs": {
"url": "https://github.com/toa-io/promex/issues"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"prepublishOnly": "rm -rf transpiled && npx tsc",
"test": "jest"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"peerDependencies": {
"typescript": "^5.2.2"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^20.8.6",
"eslint-config-standard-with-typescript": "^39.1.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.1"
}
}