forked from muhammaddadu/clout-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.79 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "clout-js",
"version": "2.1.0-beta.7",
"description": "Clean, simplistic, enterprise grade full-stack NodeJS framework",
"main": "index.js",
"scripts": {
"start": "node .",
"grunt": "grunt",
"lint": "eslint .",
"pretest": "npm run lint",
"test": "mocha test/*_test.js",
"test:watch": "mocha test/*_test.js --watch",
"gendoc": "grunt gendoc"
},
"keywords": [
"framework",
"clout"
],
"bin": {
"clout": "bin/clout"
},
"engines": {
"node": ">=v6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/clout-stack/clout-js.git"
},
"bugs": {
"url": "https://github.com/clout-stack/clout-js/issues",
"email": "[email protected]"
},
"husky": {
"hooks": {
"pre-push": "npm audit; npm run test"
}
},
"author": "Muhammad Dadu",
"license": "MIT",
"dependencies": {
"async": "^2.6.0",
"body-parser": "^1.18.2",
"colors": "^1.1.2",
"compression": "^1.7.1",
"cookie-parser": "^1.4.3",
"debug": "^3.1.0",
"ejs": "^3.0.1",
"express": "^4.16.2",
"express-session": "^1.15.6",
"fs-extra": "^5.0.0",
"glob": "^7.1.2",
"hbs": "^4.1.0",
"lodash": "^4.17.15",
"prompt": "^1.0.0",
"q": "^1.5.1",
"winston": "^2.4.0",
"winston-daily-rotate-file": "^1.7.2"
},
"devDependencies": {
"@types/express": "^4.17.2",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.12.4",
"grunt": "^1.0.4",
"grunt-jsdoc": "^2.4.1",
"grunt-mocha-test": "^0.13.3",
"husky": "^1.3.1",
"jsdoc": "^3.6.3",
"minami": "^1.2.3",
"mocha": "^5.0.0",
"request": "^2.88.0",
"should": "^13.2.1",
"sinon": "^4.2.2"
}
}