-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.31 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
{
"name": "typescript-delimited-continuation",
"version": "1.0.0",
"description": "Abusing async/await syntax to implement delimited contuations (in a type safe way!)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"build": "tsc",
"prepublishOnly": "npm run build && npm run test && git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tskj/typescript-delimited-continuation.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/tskj/typescript-delimited-continuation/issues"
},
"homepage": "https://github.com/tskj/typescript-delimited-continuation#readme",
"prepublish": "tsc",
"devDependencies": {
"@types/jest": "^27.0.3",
"jest": "^27.4.5",
"npx": "^10.2.2",
"ts-jest": "^27.1.2",
"typescript": "^4.2.3"
},
"prettier": {
"trailingComma": "all",
"tabWidth": 2,
"semi": true,
"singleQuote": true
},
"files": [
"dist/**/*"
],
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.json"
}
},
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
}
},
"directories": {
"test": "tests"
},
"dependencies": {}
}