-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
94 lines (94 loc) · 2.25 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
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
93
94
{
"name": "handlebars-to-jsx",
"version": "0.1.5",
"author": "Danakt Frost <danakt@protonmail.com>",
"license": "MIT",
"description": "Converts Handlebars template to React component",
"main": "dist/index.js",
"scripts": {
"watch": "tsc --watch",
"test": "jest",
"build": "tsc",
"prepublishOnly": "tsc",
"pretest": "tsc"
},
"keywords": [
"handlebars",
"jsx",
"react",
"converter"
],
"repository": {
"type": "git",
"url": "git+https://github.com/danakt/handlebars-to-jsx.git"
},
"bugs": {
"url": "https://github.com/danakt/handlebars-to-jsx/issues"
},
"homepage": "https://github.com/danakt/handlebars-to-jsx",
"typings": "index.d.ts",
"devDependencies": {
"@types/babel__generator": "^7.0.2",
"@types/eslint": "^4.16.6",
"@types/jest": "^27.4.0",
"@types/node": "^12.6.8",
"@types/object-hash": "^1.3.0",
"@types/prettier": "^1.18.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-arca": "^0.8.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-typescript": "^0.14.0",
"husky": "^3.0.1",
"jest": "^26.0.1",
"prettier": "^1.18.2",
"ts-jest": "^26.1.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.3",
"typescript-eslint-parser": "^22.0.0"
},
"dependencies": {
"@babel/generator": "^7.5.5",
"@babel/parser": "^7.5.5",
"@babel/types": "^7.5.5",
"@glimmer/syntax": "^0.38.4",
"is-self-closing": "^1.0.1",
"react-attr-converter": "^0.3.1",
"reserved-words": "^0.1.2"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"testMatch": [
"**/tests/*.+(ts|tsx|js)"
],
"collectCoverage": true,
"collectCoverageFrom": [
"lib/**",
"ui/**"
]
},
"husky": {
"hooks": {
"pre-push": "npm run build && npm test"
}
}
}