-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.39 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
{
"name": "handlebars-spec",
"version": "104.7.106",
"description": "",
"author": "John Boehr <[email protected]>",
"contributors": [
"Kasper Isager <[email protected]>"
],
"license": "AGPL-3.0-or-later",
"repository": "https://github.com/jbboehr/handlebars-spec.git",
"dependencies": {
"clime": "^0.5.14",
"deep-equal": "^2.0.4",
"extend": "^3.0.2",
"handlebars": "4.7.7",
"hjson": "^3.2.1",
"sha1": "^1.1.1",
"sinon": "^19.0.2",
"uglify-js": "^3.11.5"
},
"devDependencies": {
"@types/deep-equal": "^1.0.1",
"@types/extend": "^3.0.1",
"@types/hjson": "^2.4.2",
"@types/node": "^20.0",
"@types/sinon": "^17.0.3",
"@types/uglify-js": "^3.11.1",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"eslint-plugin-compat": "^4.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"source-map": "^0.7.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"scripts": {
"build": "tsc",
"extractFunctions": "ts-node --files src/cli.ts extractFunctions",
"format": "eslint --ext .js,.ts --fix .",
"lint": "eslint --ext .js,.ts .",
"generate": "ts-node --files src/cli.ts generate",
"testRunner": "ts-node --files src/cli.ts testRunner"
},
"engines": {
"node": ">=12.0.0"
},
"bin": "./dist/cli.js",
"files": [
"bin",
"dist",
"export",
"patch",
"spec",
"src"
]
}