-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.83 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
{
"name": "hydrate-text",
"version": "5.1.0",
"description": "A small, dependency-free and strongly typed template engine.",
"sideEffects": false,
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"keywords": [
"javascript",
"string",
"template engine",
"template",
"tree-shakable",
"typescript",
"zero-dependency"
],
"author": "Vasilii Kovalev <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/vasilii-kovalev/hydrate-text.git"
},
"homepage": "https://github.com/vasilii-kovalev/hydrate-text#readme",
"bugs": {
"url": "https://github.com/vasilii-kovalev/hydrate-text/issues"
},
"scripts": {
"tslint": "tsc --project tsconfig.tslint.json",
"types": "check-dts",
"eslint:check": "eslint src",
"eslint:fix": "eslint src --fix",
"prettier:check": "prettier . --check",
"prettier:fix": "prettier . --write",
"lint:check": "npm-run-all tslint types eslint:check prettier:check",
"lint:fix": "npm-run-all tslint types eslint:fix prettier:fix",
"test": "jest --coverage",
"check": "npm-run-all lint:check test",
"build": "tsc --project tsconfig.build.json",
"postbuild": "prettier dist --write",
"prepare": "npm-run-all build",
"prepublishOnly": "npm-run-all check",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@swc-node/jest": "^1.4.1",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.9",
"@typescript-eslint/eslint-plugin": "5.4.0",
"@typescript-eslint/parser": "5.4.0",
"check-dts": "^0.6.4",
"eslint": "8.3.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jest": "25.2.4",
"eslint-plugin-prettier": "4.0.0",
"jest": "^27.3.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"typescript": "^4.5.2"
}
}