-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.18 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
{
"name": "@firebrandtech/jexml",
"version": "1.6.1",
"main": "index.js",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/FirebrandTech/jexml.git"
},
"homepage": "https://github.com/FirebrandTech/jexml",
"types": "types/index.d.ts",
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"example": "ts-node tests/fixtures/example.ts",
"build": "esbuild src/index.ts --bundle --minify --platform=node --outfile=index.js --sourcemap",
"build:types": "tsc src/index.ts --esModuleInterop --emitDeclarationOnly --declaration --outdir types",
"prepublish": "yarn build && yarn build:types"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true
},
"dependencies": {
"jexl": "^2.3.0",
"yaml": "^2.4.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/jexl": "^2.3.4",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.12.11",
"esbuild": "^0.21.2",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}