-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.1 KB
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
{
"devDependencies": {
"@types/node": "^18.7.15"
},
"name": "m314ts-xunit",
"description": "My take on xUnit in TypeScript.",
"version": "0.2.0",
"main": "lib/main.js",
"types": "lib/main.d.ts",
"scripts": {
"clean": "rm -rf ./lib",
"build": "tsc && cp ./src/.npmignore ./lib/.npmignore",
"cleanAndBuild": "npm run clean && npm run build",
"tests": "node ./lib/finder/runtests.js ./lib",
"prepublish": "npm run clean && npm run build && npm run tests",
"wclean": "rmdir /s /q .\\lib",
"wbuild": "tsc && copy .\\src\\.npmignore .\\lib\\.npmignore",
"wcleanAndBuild": "npm run wclean && npm run wbuild",
"wtests": "node .\\lib\\finder\\runtests.js .\\lib",
"wprepublish": "npm run wclean && npm run wbuild && npm run wtests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matthews314/m314ts-xUnit.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/matthews314/m314ts-xUnit/issues"
},
"homepage": "https://github.com/matthews314/m314ts-xUnit#readme",
"files": [
"/lib"
]
}