-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.35 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
{
"name": "hmpo-date-controller",
"version": "1.0.0",
"description": "A controller for the hmpo-form-wizard that provides out-of-the-box support for hmpo-template-mixins' 'input-date' mixin.",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run cover && npm run check-coverage",
"unit": "mocha --recursive test/spec/ --require test/helpers --timeout 300000",
"cover": "istanbul cover _mocha -- --recursive test/spec/ --require test/helpers --timeout 300000",
"check-coverage": "istanbul check-coverage --statement 100 --branch 100 --function 100 --line 100",
"lint": "eslint ./lib/ ./index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/UKHomeOffice/passports-date-controller.git"
},
"author": "Daniel A.C. Martin",
"license": "MIT",
"bugs": {
"url": "https://github.com/UKHomeOffice/passports-date-controller/issues"
},
"homepage": "https://github.com/UKHomeOffice/passports-date-controller",
"dependencies": {
"hmpo-form-wizard": "^4.3.0",
"moment": "^2.9.0",
"underscore": "^1.7.0"
},
"devDependencies": {
"chai": "^1.10.0",
"eslint": "^0.14.1",
"hmpo-model": "^0.4.0",
"istanbul": "^0.4.3",
"mocha": "^2.1.0",
"pre-commit": "^1.1.2",
"reqres": "^1.1.1",
"sinon": "^1.12.2",
"sinon-chai": "^2.6.0"
},
"pre-commit": [
"test"
]
}