-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·68 lines (68 loc) · 1.81 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·68 lines (68 loc) · 1.81 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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "nhp",
"author": "NexusTools",
"homepage": "https://www.nexustools.net/projects/node-nhp",
"version": "1.0.0-beta.1",
"licenses": [
{
"type": "Apache License 2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0.html"
}
],
"description": "nhp is a html templating language which uses a variant of the moustache syntax, and tags similar to php for conditions and operations.",
"keywords": [
"nhp",
"html",
"nodejs",
"template",
"NexusTools",
"integration",
"compiler",
"language"
],
"bugs": {
"url": "https://github.com/NexusTools/node-nhp/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/NexusTools/node-nhp.git"
},
"scripts": {
"test": "jest --runInBand",
"test-coverage": "jest --runInBand --coverage",
"test-travis": "jest --runInBand --coverage --coverageReporters=lcov"
},
"preferGlobal": true,
"typesource": "lib",
"main": "index.js",
"bin": {
"nhp": "bin/nhp.js"
},
"engines": {
"node": ">=20.19.0"
},
"dependencies": {
"async": "^3.2.6",
"chokidar": "^5.0.0",
"htmlparser2": "^12.0.0",
"lodash": "^4.18.1",
"nulllogger": "^1.0.1"
},
"devDependencies": {
"@swc/core": "^1.16.2",
"@swc/jest": "^0.2.39",
"@types/async": "^3.2.25",
"@types/lodash": "^4.17.25",
"@types/jest": "^30.0.0",
"@types/node": "^26.4.1",
"jest": "^30.5.1",
"source-map-support": "^0.5.21"
},
"jest": {
"testRegex": "test/tests\\.js$",
"transform": {
"\\.js$": "@swc/jest"
},
"transformIgnorePatterns": []
}
}