-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.2 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
78
{
"name": "hof-frontend-assets",
"version": "0.1.0",
"main": "./bin/index.js",
"description": "Frontend JS, CSS and images for a form service",
"license": "MIT",
"engines": {
"node": ">=4.0.0",
"npm": "~3.0.0"
},
"author": "UKHomeOfficeForms",
"repository": "https://github.com/UKHomeOfficeForms/hof-frontend-assets.git",
"bugs": "https://github.com/UKHomeOfficeForms/hof-frontend-assets/issues",
"bin": {
"hof-frontend-assets": "./bin/index.js"
},
"scripts": {
"test": "npm-run-all lint style browser:test unit:coverage",
"browser:test": "karma start --single-run",
"unit:test": "mocha test/unit",
"cover": "istanbul cover _mocha -- test/unit",
"check-coverage": "istanbul check-coverage",
"unit:coverage": "npm-run-all cover check-coverage",
"snyk": "snyk test",
"snyk:dev": "snyk test --dev",
"lint": "eslint .",
"style": "jscs .",
"snyk-protect": "snyk protect",
"prepublish": "npm run snyk-protect",
"ci": "travis-conditions"
},
"dependencies": {
"hof-frontend-toolkit": "^1.0.0",
"jquery": "^3.1.1",
"lodash": "^4.17.4",
"node-sass": "^3.10.0",
"npm-sass": "^1.3.0",
"typeahead-aria": "^1.0.1",
"witch": "^1.0.0"
},
"devDependencies": {
"browserify": "^12.0.2",
"browserify-istanbul": "^2.0.0",
"chai": "^3.5.0",
"chai-jquery": "^2.0.0",
"eslint": "^3.12.2",
"eslint-config-homeoffice": "^2.0.0",
"istanbul": "^0.4.5",
"jscs": "^3.0.7",
"karma": "^1.3.0",
"karma-browserify": "^5.1.0",
"karma-chai": "^0.1.0",
"karma-coverage": "^1.1.1",
"karma-fixture": "^0.2.6",
"karma-html2js-preprocessor": "^1.1.0",
"karma-jquery": "^0.1.0",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sinon": "^1.0.5",
"karma-sinon-chai": "^1.2.4",
"mocha": "^3.2.0",
"mock-fs": "^3.12.1",
"npm-run-all": "^3.1.1",
"phantomjs-polyfill": "0.0.2",
"pre-commit": "^1.1.3",
"proxyquire": "^1.7.10",
"proxyquireify": "^3.2.1",
"sinon": "^1.17.6",
"sinon-chai": "^2.8.0",
"snyk": "^1.22.1",
"travis-conditions": "0.0.0",
"watchify": "^3.7.0"
},
"pre-commit": [
"test"
],
"snyk": true
}