-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathpackage.json
42 lines (42 loc) · 1.39 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
{
"name": "node-ts",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"test": "test"
},
"engines": {
"node": "16"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch --preserveWatchOutput",
"test": "node -r source-map-support/register dist/test/index.js",
"test:coverage": "c8 --all -x dist/test -x test node -r source-map-support/register dist/test/index.js",
"test:pretty": "ZORA_REPORTER=json node -r source-map-support/register dist/test/index.js | zr",
"test:pta":"node -r source-map-support/register node_modules/.bin/pta dist/test/specs/*.js",
"test:tap-pipeline": "node -r source-map-support/register dist/test/index.js | tap-difflet",
"test:watch": "nodemon -r source-map-support/register --watch dist/ dist/test/index.js",
"test:pta:watch": "nodemon -r source-map-support/register --watch dist/ node_modules/.bin/pta dist/test/specs/*.js",
"dev": "run-p build:watch test:watch",
"dev:pta": "run-p build:watch test:pta:watch"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/is-even": "~1.0.2",
"c8": "~8.0.1",
"nodemon": "~3.0.2",
"npm-run-all": "~4.1.5",
"pta": "*",
"source-map-support": "~0.5.21",
"tap-difflet": "~0.7.2",
"typescript": "~5.3.3",
"zora": "*",
"zora-reporters": "*"
},
"dependencies": {
"is-even": "~1.0.0"
}
}