-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.6 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.6 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@codejamboree/replace-tags",
"version": "1.2.2",
"description": "Effortlessly replace placeholders with dynamic content using this powerful text manipulation toolkit.",
"main": "dist/index.min.js",
"devMain": "dist-dev/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"dist-dev",
"example.js"
],
"changelog": "CHANGELOG.md",
"runkitExample": "example.js",
"scripts": {
"publish:npm": "./scripts/publish.sh",
"build": "webpack --mode production",
"build:dev": "webpack --mode development",
"build:all": "npm run build:dev && npm run build",
"test": "jest",
"test:examples": "npm run build:all && TEST_EXAMPLES=true jest",
"depcheck": "npm-check --unused --ignore @codejamboree/replace-tags",
"lint": "eslint src",
"doc": "typedoc ./src/index.ts",
"format": "npm run pretty",
"pretty": "prettier --write . --list-different --ignore-path .prettierignore"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeJamboree/replace-tags.git"
},
"keywords": [
"Custom tag parsing",
"Pattern-based replacement",
"Tag replacement",
"Variable interpolation",
"Placeholder substitution",
"Data substitution",
"Dynamic content rendering",
"String templating",
"Content transformation",
"Text interpolation",
"String manipulation",
"Data-driven text processing",
"Dynamic text rendering",
"Template",
"Templating engine",
"String formatting",
"Value injection",
"Token replacement",
"Inline variable interpretation",
"Text parsing"
],
"author": {
"name": "Code Jamboree LLC",
"email": "info@codejamboree.com",
"url": "https://www.codejamboree.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/CodeJamboree/replace-tags/issues"
},
"homepage": "https://github.com/CodeJamboree/replace-tags#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0",
"eslint-plugin-jsdoc": "^48.2.2",
"expect": "^29.7.0",
"jest": "^29.7.0",
"npm-check": "^6.0.1",
"prettier": "^3.2.5",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"typedoc": "^0.25.12",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"contributors": [
{
"name": "Lewis Moten",
"url": "https://github.com/Lewis-Moten",
"email": "lewis.moten@codejamboree.com"
},
{
"name": "Lewis Moten",
"email": "lewismoten@gmail.com"
}
]
}