-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 879 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
40
41
{
"name": "ts-esm-minimal",
"version": "1.0.0",
"description": "Minimal Typescript to build native ESM example",
"type": "module",
"main": "index.js",
"scripts": {
"test:tap": "tap --ts test/tap/**/*.test.ts",
"test:mocha": "mocha --require ts-node/esm test/mocha/**/*.test.ts",
"build": "tsc --build",
"serve": "ts-node ./src",
"start": "node ./dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/tap": "^15.0.8",
"mocha": "^10.2.0",
"tap": "^16.3.4",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"tap": {
"ts": false,
"node-arg": [
"--loader=ts-node/esm",
"--no-warnings"
]
},
"mocha": {
"node-option": [
"loader=ts-node/esm",
"no-warnings"
]
},
"dependencies": {
"debug": "^4.3.4"
}
}