-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.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": "jsmart-express",
"title": "jSmart-express",
"description": "Use jSmart (PHP Smarty port in JS) with partials in Express 3.",
"main": "jsmart-express.js",
"version": "2.0.0",
"url": "https://github.com/umakantp/jsmart-express/",
"keywords": [
"smarty",
"express",
"javascript",
"jsmart",
"template",
"templates"
],
"author": "Umakant Patil <me@umakantpatil.com>",
"contributors": [
{
"name": "Umakant Patil",
"email": "me@umakantpatil.com"
}
],
"license": "MIT",
"dependencies": {
"async": "^3.2.0",
"jsmart": "^4.0.0",
"lru-cache": "^6.0.0"
},
"devDependencies": {
"grunt": "1.4.1",
"grunt-eslint": "23.0.0",
"load-grunt-tasks": "5.1.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.23.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-standard": "5.0.0",
"mocha": "8.4.0",
"should": "13.2.3"
},
"bugs": {
"url": "https://github.com/umakantp/jsmart-express/issues"
},
"scripts": {
"test": "grunt eslint && mocha",
"precommit": "grunt eslint && mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/umakantp/jsmart-express.git"
}
}