-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.44 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.44 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
{
"name": "twig-drupal-string",
"version": "0.4.1",
"type": "module",
"description": "Twig.js extension for Drupal String module filter support",
"keywords": [
"twig",
"drupal",
"string",
"translation"
],
"homepage": "https://github.com/miyagi-dev/twig-drupal-string",
"bugs": {
"url": "https://github.com/miyagi-dev/twig-drupal-string/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/miyagi-dev/twig-drupal-string.git"
},
"license": "MIT",
"author": {
"name": "Fynn Ellie Becker",
"email": "post@fynn.be",
"url": "https://fynn.be"
},
"contributors": [
{
"name": "Judith Plath"
}
],
"main": "./lib/index.cjs",
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.cjs"
}
},
"files": [
"lib",
"index.d.ts"
],
"scripts": {
"lint": "eslint",
"test": "node --test",
"format": "prettier --write .",
"build": "esbuild lib/index.js --outfile=lib/index.cjs --platform=node --format=cjs",
"version": "conventional-changelog --preset angular --infile CHANGELOG.md --same-file && git add CHANGELOG.md",
"prepack": "npm run lint && npm run test && npm run build"
},
"dependencies": {
"yaml": "^2.7.0"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"conventional-changelog-cli": "^5.0.0",
"esbuild": "^0.25.0",
"eslint": "^9.20.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.14.0",
"prettier": "^3.5.0",
"twig": "^1.17.1"
}
}