-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 994 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
{
"name": "@nested-code/cogs",
"version": "0.0.1",
"description": "Centralised tooling config for Nested Code packages.",
"repository": "https://github.com/nested-code/cogs",
"author": "Tim Kinnane <tim@nestedcode.com>",
"license": "MIT",
"private": "false",
"type": "module",
"scripts": {
"test": "jest --collectCoverage",
"test:dist": "cd test/package && yarn test",
"build": "node --no-warnings --experimental-specifier-resolution node --loader ts-node/esm bin/build.ts"
},
"dependencies": {
"@types/node": "16",
"esbuild": "^0.14.10",
"esbuild-runner": "^2.2.1",
"jest": "^27.4.5",
"jest-config": "^27.4.5",
"npm-dts": "^1.3.10",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2"
},
"devDependencies": {
"@jest/types": "27.5.1",
"@types/jest": "27.4.1",
"ts-node": "10.7.0",
"typescript": "4.6.3"
},
"files": [
"dist"
],
"exports": {
"./jest": {
"import": "./dist/jest/index.js"
}
}
}