This repository was archived by the owner on Mar 19, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.59 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.59 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
{
"name": "dynamic-template-engine",
"version": "1.0.2",
"description": "A typescript library to transform event payloads (in json format) to standard jsons or chat client platform specific jsons (e.g. Slack and Teams) using templates (e.g. handlebars)",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest",
"coverage": "jest --coverage",
"build": "tsc && npm run-script copystatic",
"prepare": "npm run-script build",
"lint": "eslint --ext .ts,.tsx src",
"copystatic": "node ./scripts/copyStaticAssets.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/github/dynamic-template-engine.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/github/dynamic-template-engine/issues"
},
"homepage": "https://github.com/github/dynamic-template-engine#readme",
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^13.11.0",
"@typescript-eslint/eslint-plugin": "^3.0.0",
"@typescript-eslint/parser": "^3.0.0",
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-airbnb-typescript": "^8.0.0",
"eslint-config-probot": ">=0.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsdoc": "^25.0.0",
"eslint-plugin-no-only-tests": "^2.3.1",
"jest": "^27.2.4",
"json-schema": "^0.4.0",
"nock": "^13.0.2",
"shelljs": "^0.8.3",
"ts-jest": "^27.0.5",
"typescript": "^3.8.3"
},
"dependencies": {
"handlebars": "^4.7.6",
"liquidjs": "^10.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}