-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.04 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
{
"name": "hawkejs",
"description": "Asynchronous Embedded JavaScript templates",
"version": "2.4.0",
"author": "Jelle De Loecker <[email protected]>",
"keywords": [
"template",
"engine",
"ejs",
"hawkejs",
"view"
],
"main": "./lib/init.js",
"repository": "[email protected]:11ways/hawkejs.git",
"dependencies": {
"nwsapi" : "2.2.12",
"protoblast" : "~0.9.3"
},
"devDependencies": {
"codecov" : "~3.8.3",
"istanbul-lib-instrument" : "~4.0.3",
"mocha" : "~10.2.0",
"nyc" : "^15.1.0",
"puppeteer" : "~19.7.1",
"source-map" : "~0.7.3",
"@c4312/matcha" : "~1.3.1"
},
"files": [
"lib/",
"index.js"
],
"scripts": {
"coverage" : "nyc --reporter=text --reporter=lcov mocha --exit --timeout 25000 --bail --file test/00-init.js",
"report-coverage" : "codecov",
"test" : "mocha --exit --reporter spec --bail --timeout 15000 --file test/00-init.js"
},
"license": "MIT",
"engines": {
"node" : ">=14.0.0"
}
}