forked from HMPO/hmpo-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.3 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
{
"name": "hmpo-components",
"version": "1.17.0",
"description": "Component wrappers for wizard fields",
"main": "index.js",
"scripts": {
"test": "npm run test:lint && npm run test:unit && npm run test:cover",
"test:lint": "eslint .",
"test:unit": "istanbul cover _mocha -- --recursive test 'components/**/spec*'",
"test:cover": "istanbul check-coverage",
"prepare": "uglifyjs components/common.js components/**/script.js -o all.js"
},
"repository": {
"type": "git",
"url": "https://github.com/UKHomeOffice/passports-components.git"
},
"keywords": [
"express",
"nunjucks",
"form",
"components"
],
"author": "HMPO",
"license": "MIT",
"engines": {
"node": ">=6"
},
"bugs": {
"url": "https://github.com/UKHomeOffice/passports-components/issues"
},
"homepage": "https://github.com/UKHomeOffice/passports-components",
"dependencies": {
"deep-clone-merge": "^1.4.0",
"moment": "^2.13.0",
"underscore": "^1.8.3"
},
"peerDependencies": {
"govuk-frontend": ">=2.11.0",
"nunjucks": ">=3"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.16.0",
"hmpo-nunjucks-test": "^1.1.0",
"istanbul": "^0.4.3",
"mocha": "^6.1.4",
"sinon": "^7.3.2",
"sinon-chai": "^3.0.0",
"uglify-js": "^3.5.12"
}
}