-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 2.03 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
60
61
62
{
"version": "0.0.12",
"name": "simple-async-context",
"description": "Async context for node and the browser",
"main": "build/index.js",
"typings": "build/index.d.ts",
"source": "src/index.ts",
"files": [
"build/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/iliasbhal/simple-async-context.git"
},
"keywords": [],
"author": "Ilias Bhallil <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/iliasbhal/simple-async-context/issues"
},
"homepage": "https://github.com/iliasbhal/simple-async-context",
"scripts": {
"dev": "yarn setup && yarn build:watch",
"setup": "yarn build && yarn sync",
"sync": "npm link && npm link simple-async-context",
"deploy": "yarn test && yarn build && npm publish",
"test": "jest",
"build": "yarn build:ts && yarn build:dts",
"build:ts": "rm -rf ./build && babel --extensions .ts,.tsx ./src -d ./build --ignore '**/tests'",
"build:dts": "tsc --emitDeclarationOnly --project ./tsconfig.build.json",
"build:watch": "yarn build:ts -w & yarn build:dts -w",
"prepublish": "yarn test && yarn build",
"playground": "bun run --watch ./scripts/playground.ts"
},
"peerDependencies": {},
"dependencies": {},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.23.9",
"@babel/plugin-external-helpers": "^7.22.5",
"@babel/plugin-proposal-decorators": "^7.20.2",
"@babel/plugin-proposal-explicit-resource-management": "^7.23.9",
"@babel/plugin-transform-runtime": "^7.22.10",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.23.3",
"@jest/types": "^28.1.3",
"@types/bun": "^1.1.14",
"@types/jest": "^28.1.6",
"@types/jsdom": "^20.0.1",
"@types/node": "^18.6.4",
"babel-jest": "^29.2.2",
"babel-preset-minify": "^0.5.2",
"bun": "^1.1.42",
"jest": "^28.1.3",
"ts-jest": "^29.2.5",
"tslib": "^2.6.2",
"tsx": "^4.19.2",
"typescript": "^5.3.3",
"wait": "^0.4.2"
}
}