-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.89 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
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "yunit",
"version": "2.5.0",
"description": "Test framework extended from xunit.ts.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "npm run build && npm run test:build && npm run test:run",
"format": "prettier --write src/**/*.ts",
"link": "npm run build && npm link",
"lint": "eslint src --ext .ts",
"lint-fix": "eslint src --ext .ts --fix",
"postversion": "git push && git push --tags",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run format && npm run lint",
"test": "npm run test:link && npm run test:build && npm run test:run",
"test:link": "npm run link && npm link yunit",
"test:build": "npx tsc -p unittests",
"test:run": "node dist-unittests/index.js",
"test-coverage": "npm run test:link && npm run test:build && npm run test-coverage:run",
"test-coverage:run": "nyc npm run test:run",
"version": "git add -A src"
},
"repository": {
"type": "git",
"url": "[email protected]:filiptypjeu/npm-yunit.git"
},
"homepage": "https://github.com/filiptypjeu/npm-yunit",
"author": "Filip Stenbacka",
"license": "ISC",
"dependencies": {
"assert": "^2.0.0",
"colors": "^1.4.0",
"command-line-args": "^5.2.1",
"xunit.ts": "^1.3.2"
},
"devDependencies": {
"@types/assert": "^1.5.6",
"@types/command-line-args": "^5.2.0",
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"nyc": "^15.1.0",
"prettier": "^3.0.3",
"typescript": "^5.1.6"
},
"files": [
"dist"
],
"keywords": []
}