generated from K-FOSS/TS-Core-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.26 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
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@k-foss/ts-estests",
"version": "1.0.7",
"description": "@k-foss/ts-estests is a lightweight testing framework for use with ESNext & ESModules code",
"repository": "https://github.com/K-FOSS/TS-ESTests",
"main": "dist/index.js",
"type": "module",
"private": false,
"files": [
"dist/**/*",
"README.md"
],
"bin": {
"ts-estest": "dist/cli.js"
},
"scripts": {
"start": "npm run build && npm run global",
"build": "tsc -p ./tsconfig.build.json",
"global": "npm i -g && ts-estest",
"pretest": "npm run build",
"test": "node --loader extensionless --loader @k-foss/ts-esnode --experimental-modules --experimental-specifier-resolution=node --experimental-import-meta-resolve ./src/cli.ts -- ./Tests",
"dev": "nodemon",
"prepublishOnly": "npm run build",
"start:debug": "node --nolazy --inspect-brk=0.0.0.0 --loader extensionless --loader @k-foss/ts-esnode --experimental-modules --harmony-optional-chaining --experimental-specifier-resolution=node --harmony-top-level-await ./src/index.ts",
"prettier": "prettier --config .prettierrc --check \"src/**/*ts\"",
"lint": "eslint ./src --ext .js,.ts"
},
"dependencies": {
"@k-foss/ts-worker": "^1.0.5",
"colors": "^1.4.0"
},
"peerDependencies": {
"@k-foss/ts-esnode": ">=2.0.3",
"typescript": ">=3.7"
},
"devDependencies": {
"@k-foss/ts-esnode": "^2.0.3",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/node": "^14.14.10",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.8.2",
"conventional-changelog-conventionalcommits": "^4.4.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"extensionless": "^1.4.5",
"nodemon": "^2.0.4",
"prettier": "^2.1.2",
"semantic-release": "^17.2.3",
"typescript": "^5.2.2"
},
"author": {
"email": "[email protected]",
"name": "Entrapta Raven",
"url": "https://mylogin.space"
},
"engines": {
"node": ">= 13.9"
},
"license": "MIT"
}