-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
70 lines (70 loc) · 1.45 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
{
"name": "boxwood",
"version": "0.80.0",
"description": "Compile HTML templates into JS",
"main": "index.js",
"scripts": {
"test": "node --test --test-reporter=dot",
"test:debug": "node --test --test-reporter=spec",
"coverage": "c8 npm test",
"benchmark": "node --test benchmark/index.js",
"watch": "npm test -- --watch",
"prepush": "npm test"
},
"ava": {
"files": [
"test/spec/**/*.js",
"**/*.spec.js"
]
},
"engines": {
"node": ">= 20.11.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/buxlabs/boxwood.git"
},
"keywords": [
"html",
"engine",
"javascript"
],
"author": {
"name": "Emil Ajdyna",
"email": "[email protected]",
"url": "https://buxlabs.pl/en"
},
"contributors": [
{
"name": "Przemysław Konieczniak",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/buxlabs/boxwood/issues"
},
"homepage": "https://github.com/buxlabs/boxwood#readme",
"devDependencies": {
"benchmark": "2.1.4",
"c8": "^10.1.2",
"express": "^4.21.0",
"handlebars": "^4.7.8",
"jsdom": "^25.0.0",
"mustache": "^4.2.0",
"underscore": "^1.13.7"
},
"standard": {
"ignore": [
"test/fixtures/**/*",
"test/spec/**/*",
"src/**/*.spec.js"
]
},
"dependencies": {
"css-tree": "^3.0.0"
},
"prettier": {
"semi": false
}
}