-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.06 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
{
"name": "@bleskomat/form",
"version": "1.3.2",
"description": "Form class for node.js with validation (synchronous and asynchronous), post-processing, and support for handlebars templates.",
"main": "index.js",
"scripts": {
"test": "npm run test:unit ; npm run test:integration",
"test:integration": "./node_modules/.bin/mocha --recursive ./test/integration",
"test:unit": "./node_modules/.bin/mocha --recursive ./test/unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bleskomat/form-node.git"
},
"author": {
"name": "Charles Hill",
"email": "[email protected]"
},
"contributors": [
{
"name": "Carlos Garcia Ortiz",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/bleskomat/form-node/issues"
},
"homepage": "https://github.com/bleskomat/form-node#readme",
"dependencies": {
"express-handlebars": "6.0.7"
},
"devDependencies": {
"cheerio": "1.0.0-rc.12",
"express": "4.18.2",
"mocha": "10.2.0"
}
}