-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 826 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 826 Bytes
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
{
"name": "@baked-dev/async-class",
"version": "1.1.7",
"private": false,
"description": "",
"scripts": {
"test": "jest",
"prepublishOnly": "build-ts-package"
},
"files": [
"dist/**/*.cjs",
"dist/**/*.mjs",
"dist/**/*.js.map",
"dist/**/*.d.ts",
"dist/**/*.d.ts.map"
],
"keywords": [],
"author": "baked-dev",
"license": "ISC",
"devDependencies": {
"@baked-dev/ts-package": "^0.0.2",
"@types/jest": "^28.1.3",
"@types/node": "^18.0.0",
"jest": "^28.1.2",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"exports": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs"
},
"types": "dist/cjs/index.d.ts",
"repository": "https://github.com/baked-dev/async-class",
"readme": "https://github.com/baked-dev/async-class"
}