-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.81 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
{
"name": "ts-transformer-inline-file",
"version": "0.2.0",
"description": "A TypeScript custom transformer for inlining files",
"author": "Jakub Jirutka <jakub@jirutka.cz>",
"license": "MIT",
"homepage": "https://github.com/jirutka/ts-transformer-inline-file",
"bugs": "https://github.com/jirutka/ts-transformer-inline-file/issues",
"repository": {
"type": "git",
"url": "https://github.com/jirutka/ts-transformer-inline-file.git"
},
"keywords": [
"inline",
"transformer",
"typescript",
"typescript-transformer"
],
"main": "index.js",
"types": "index.d.ts",
"files": [
"*.d.ts",
"*.d.ts.map",
"*.js",
"*.js.map",
"*.ts"
],
"scripts": {
"build": "tsc --build",
"clean": "rimraf coverage/ index.{d.ts,d.ts.map,js,js.map} transformer.{d.ts,d.ts.map,js,js.map} README.md *.log",
"lint": "eslint --ext .ts,.js .",
"prepublishOnly": "run-s readme2md",
"readme2md": "asciidoctor -b docbook -a npm-readme -o - README.adoc | pandoc -f docbook -t markdown_github -o README.md",
"test": "tsc --build && ts-node node_modules/.bin/tape test/*.test.ts",
"watch-ts": "tsc -w"
},
"engines": {
"node": ">=14"
},
"peerDependencies": {
"typescript": "^4.0.0"
},
"devDependencies": {
"@types/node": "^14.0.0",
"@types/tape": "^4.13.2",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-import-resolver-ts": "^0.4.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.0",
"tape": "^5.5.3",
"ts-node": "^10.8.1",
"typescript": "^4.0.0"
}
}