-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.42 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.42 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
46
47
48
49
50
51
52
53
54
{
"name": "@js-factory/ironhead",
"version": "0.3.0",
"description": "NodeJS Framework based on functional and declarative programming.",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "jest",
"test-only": "jest",
"test:watch": "jest --watch"
},
"jest": {
"verbose": true,
"collectCoverage": true,
"collectCoverageFrom": [
"*.js",
"lib/**/*.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/js-factory/ironhead.git"
},
"keywords": [
"NodeJS",
"javascript",
"express"
],
"author": "js-factory",
"license": "MIT",
"bugs": {
"url": "https://github.com/js-factory/ironhead/issues"
},
"homepage": "https://github.com/js-factory/ironhead#readme",
"dependencies": {
"@js-factory/router": "^0.2.0",
"braces": ">=3.0.2",
"cookie-parser": "^1.4.5",
"cosmiconfig": "^7.0.0",
"csurf": "^1.11.0",
"express": "^4.17.1",
"handlebars": "^4.7.6",
"js-yaml": ">=4.0.0",
"lodash": "^4.17.20"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3"
}
}