-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.24 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
{
"name": "expviewer",
"version": "1.1.0",
"description": "A view engineer for express application that use a litle php like syntax to describe view with some interesting features",
"main": "lib/index.js",
"scripts": {
"test": "mocha ./lib/test -t 10000",
"build": "tsc",
"watch": "tsc -w"
},
"files": [
"lib",
"syntaxes",
"index",
"LICENCE",
"README.md"
],
"keywords": [
"express",
"nodejs",
"view-enginer"
],
"author": "luckynems",
"license": "MIT",
"dependencies": {
"source-map": "^0.7.3",
"vscode-oniguruma": "^1.6.1",
"vscode-textmate": "^6.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.5",
"@types/express": "^4.17.13",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.10",
"@types/prettier": "^2.4.3",
"@types/request": "^2.48.8",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"express": "^4.17.2",
"mocha": "^9.2.0",
"prettier": "^2.5.1",
"request": "^2.88.2",
"sinon": "^13.0.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.5"
},
"bugs": {
"url": "https://github.com/dev-univers/expviewer"
},
"homepage": "https://github.com/dev-univers/expviewer.git"
}