-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.21 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
{
"name": "calling-context",
"version": "0.0.0",
"description": "A tiny library to pass context down the call stack in a type-safe manner",
"main": "./dist/main.js",
"types": "./dist/main.d.ts",
"engines": {
"node": ">=12.0.0"
},
"files": [
"./dist"
],
"scripts": {
"clean-dist": "rm -rf ./dist",
"build": "npm run clean-dist && tsc",
"start": "node .",
"test": "jest ./src",
"lint": "eslint ./src",
"type-check": "tsc --noEmit",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tlaanemaa/calling-context.git"
},
"keywords": [
"context",
"caller",
"call-stack",
"call",
"stack",
"typesafe",
"type-safe"
],
"author": "Taavi Laanemaa <taavi.laanemaa@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tlaanemaa/calling-context/issues"
},
"homepage": "https://github.com/tlaanemaa/calling-context#readme",
"devDependencies": {
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0",
"jest": "^27.1.0",
"ts-jest": "^27.0.5",
"typescript": "^4.4.2"
}
}