-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 2.14 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
{
"name": "@k-foss/ts-esnode",
"version": "2.0.3",
"description": "TS-ESNode is a Node.JS v13 Experimental loader hook for transpiling ESNext TypeScript to ESNext ESModule Node.JS Code on the fly",
"main": "out/dist/index.js",
"type": "module",
"repository": "https://github.com/K-FOSS/TS-ESNode.git",
"files": [
"out/dist/**/*.js",
"README.md"
],
"devDependencies": {
"@k-foss/ts-estests": "^1.0.7",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"@types/node": "^14.14.25",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"conventional-changelog-conventionalcommits": "^4.5.0",
"eslint": "^7.21.0",
"eslint-config-prettier": "^7.2.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^5.0.0",
"extensionless": "^1.4.5",
"prettier": "2.2.1",
"semantic-release": "^17.3.8",
"typescript": "^4.1.3"
},
"peerDependencies": {
"typescript": ">=3.7"
},
"engines": {
"node": ">= 14.5"
},
"scripts": {
"pretest:integration": "npm run build",
"test:integration": "node --experimental-loader=extensionless --loader ./out/dist/index.js --experimental-import-meta-resolve ./Testing/Runner/index.ts",
"test:unit": "ts-estest ./src/",
"prebuild": "tsc -p ./bin/",
"build": "node --experimental-loader=extensionless ./out/build/build.js",
"pretry": "",
"try": "node --loader extensionless --loader ./out/dist/index.js --loader extensionless ./test/",
"prepublishOnly": "npm run build",
"prettier": "prettier --config .prettierrc --check \"src/**/*ts\" \"bin/**/*.ts\"",
"lint": "eslint -c .eslintrc.json . --ext .js,.ts",
"typecheck": "tsc --noEmit"
},
"author": {
"email": "[email protected]",
"name": "Kristian Jones",
"url": "https://kristianjones.dev"
},
"license": "MIT",
"keywords": [
"typescript",
"loader-hook",
"ts",
"node",
"runtime",
"environment"
]
}