-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 764 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 764 Bytes
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
{
"name": "jts",
"version": "1.2.4",
"description": "Basic server side templates using Javascript template strings.",
"main": "src/index.js",
"files": [
"src/**/*.js",
"!*.spec.js"
],
"scripts": {
"test": "jest",
"benchmark": "node ./benchmark"
},
"author": "Albert Martin <albert@imor.tl>",
"license": "MIT",
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "https://github.com/Ignigena/jts.git"
},
"devDependencies": {
"benchmark": "^2.1.4",
"dot": "^1.1.3",
"ejs": "^3.1.9",
"eslint": "^8.42.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-node": "^11.1.0",
"handlebars": "^4.7.7",
"jest": "^29.5.0"
}
}