-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.69 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.69 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
{
"author": "Transcend Inc.",
"name": "@transcend-io/handlebars-utils",
"description": "Utility functions for handlebars templating with Transcend - available in node and client side.",
"version": "1.3.2",
"homepage": "https://github.com/transcend-io/handlebars-utils",
"repository": {
"type": "git",
"url": "https://github.com/transcend-io/handlebars-utils.git"
},
"license": "MIT",
"main": "build/index",
"files": [
"build/**/*",
"package.json"
],
"scripts": {
"update:sdks": "yarn set version from sources && yarn sdks base",
"update:deps": "yarn upgrade-interactive && yarn update:sdks",
"build": "yarn tsc --build",
"clean": "yarn tsc --build --clean",
"lint": "yarn eslint src --ext .ts",
"prepublish": "yarn build",
"test": "yarn mocha './src/**/*.test.ts'"
},
"dependencies": {
"@transcend-io/type-utils": "^1.1.1",
"change-case": "^4.1.2",
"handlebars": "^4.7.8",
"lodash": "^4.17.21",
"pluralize": "^8.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/lodash": "^4.14.199",
"@types/mocha": "^10.0.2",
"@types/pluralize": "^0.0.31",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"@yarnpkg/sdks": "^3.0.0-rc.42",
"chai": "^4.3.6",
"depcheck": "^1.4.3",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsdoc": "^37.9.4",
"mocha": "^10.1.0",
"prettier": "^2.5.1",
"ts-node": "^10.9.1",
"typescript": "=5.0.4"
},
"packageManager": "yarn@4.12.0"
}