-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.45 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
{
"name": "@danieldietrich/rich-string",
"version": "0.1.5",
"description": "A tag function that automatically aligns embedded multiline strings.",
"keywords": [
"align",
"embedded",
"generator",
"multiline",
"rich-string",
"string",
"substitution",
"template",
"typed",
"types",
"typescript"
],
"engines": {
"node": ">=10.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rm -fr dist",
"build": "npm run clean && npm run lint && tsc --project tsconfig.build.json",
"lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"prepare": "npm test && npm run build",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/danieldietrich/rich-string"
},
"homepage": "https://github.com/danieldietrich/rich-string",
"bugs": "https://github.com/danieldietrich/rich-string/issues",
"author": {
"name": "Daniel Dietrich",
"email": "cafebab3@gmail.com",
"url": "https://danieldietrich.dev"
},
"funding": "https://github.com/sponsors/danieldietrich",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.28",
"@typescript-eslint/eslint-plugin": "^4.15.1",
"@typescript-eslint/parser": "^4.15.1",
"codecov": "^3.8.1",
"eslint": "^7.20.0",
"jest": "^26.6.3",
"ts-jest": "^26.5.1",
"typescript": "^4.1.5"
}
}