-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
54 lines (54 loc) · 1.4 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
{
"name": "hof-controllers",
"version": "6.0.3",
"description": "A collection of controllers commonly used in HOF",
"main": "index.js",
"license": "MIT",
"bugs": {
"url": "https://github.com/UKHomeOffice/hof-controllers/issues"
},
"homepage": "https://github.com/UKHomeOffice/hof-controllers",
"author": "HomeOffice",
"scripts": {
"test": "NODE_ENV=test npm run lint && npm run style && npm run mocha",
"lint": "eslint .",
"mocha": "mocha",
"style": "jscs **/*.js --config=./.jscsrc.json"
},
"dependencies": {
"deprecate": "^1.0.0",
"hof-emailer": "^1.0.0",
"hof-form-controller": "^2.0.0",
"hogan.js": "^3.0.2",
"i18n-lookup": "^0.1.0",
"lodash": "^4.16.3",
"moment": "2.15.1",
"mustache": "^2.3.0"
},
"devDependencies": {
"chai": "^3.0.0",
"debug": "^2.2.0",
"eslint": "^0.23.0",
"eslint-config-homeoffice": "^0.1.4",
"eslint-plugin-filenames": "^0.1.1",
"eslint-plugin-mocha": "^0.2.2",
"eslint-plugin-one-variable-per-var": "0.0.3",
"hof-model": "^2.0.0",
"i18n-future": "^1.0.0",
"jscs": "^1.13.1",
"mocha": "^2.2.5",
"mocha-junit-reporter": "^1.4.0",
"mocha-multi": "^0.7.1",
"pre-commit": "^1.0.10",
"proxyquire": "^1.5.0",
"reqres": "^1.2.2",
"sinomocha": "^0.2.4",
"sinon": "^1.15.3",
"sinon-chai": "^2.8.0"
},
"pre-commit": [
"lint",
"style",
"test"
]
}