-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.15 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
{
"name": "node-tao",
"version": "1.0.2",
"description": "Lightweight, fast, and powerful embedded JS template engine",
"keywords": [
"node template engine",
"lightweight template engine",
"fast template engine",
"template engine",
"embedded template engine"
],
"main": "index",
"author": "Manu Claeys <unam31@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/node-tao/node-tao.git"
},
"bugs": {
"url": "https://github.com/node-tao/node-tao/issues"
},
"license": "MIT",
"scripts": {
"test": "jest",
"build": "rimraf dist && tsc && cpx src/*.html dist && cpx package.json dist/ && cpx README.md dist/",
"start": "nodemon --ext ts,html --watch src --exec \"tsc && cpx src/*.html dist && node dist/server.js\""
},
"devDependencies": {
"@types/jest": "29.4.0",
"@types/node": "^25.3.5",
"cpx2": "8.0.0",
"jest": "29.7.0",
"nodemon": "3.1.9",
"rimraf": "4.1.2",
"ts-jest": "29.3.2",
"ts-node": "10.9.1",
"tsc-watch": "6.2.0",
"typescript": "5.1.3"
},
"dependencies": {
"glob": "^13.0.6"
},
"engines": {
"node": ">=17.0.0"
}
}