-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
128 lines (128 loc) · 3.52 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "assets-frontend",
"version": "0.0.1",
"description": "Frontend static assets for HMRC",
"repository": {
"type": "git",
"url": "https://github.com/hmrc/assets-frontend.git"
},
"scripts": {
"start": "npm run -s dev",
"dev": "gulp",
"dev:all": "gulp default:all",
"build": "gulp build",
"release": "gulp release",
"test": "gulp test",
"test:dev": "karma start assets/test/config/karma.conf.js no-single-run",
"test:gulp": "gulp test:gulpTasks",
"component-library": "gulp component-library",
"copy:component-library": "gulp copy:component-library",
"kss": "kss -c component-lib.json",
"kss-clone": "kss --clone --builder=node_modules/kss/builder/handlebars/",
"design-system": "gulp design-system",
"audit": "better-npm-audit audit"
},
"keywords": [
"HMRC",
"assets"
],
"author": "HMRC",
"license": "Apache-2.0",
"dependencies": {
"acorn": "7.4.0",
"browser-sync": "2.26.14",
"browserify": "14.4.0",
"browserify-shim": "3.8.14",
"bundle-collapser": "1.2.1",
"datatables": "1.10.18",
"del": "5.0.0",
"eslint": "4.18.2",
"govuk-elements-sass": "3.1.2",
"govuk_frontend_toolkit": "7.1.0",
"gulp": "4.0.2",
"gulp-autoprefixer": "4.0.0",
"gulp-concat": "2.6.1",
"gulp-modernizr": "4.0.1",
"gulp-plumber": "1.1.0",
"gulp-rename": "1.2.2",
"gulp-replace": "0.6.1",
"gulp-sass": "5.0.0",
"gulp-sourcemaps": "2.6.0",
"gulp-svgmin": "4.0.1",
"gulp-uglify": "3.0.0",
"gulp-util": "3.0.8",
"jasmine-core": "2.5.2",
"jquery": "1.12.4",
"jquery-validation": "1.19.3",
"js-base64": "2.1.7",
"json3": "3.3.2",
"karma": "6.3.4",
"karma-browserify": "7.0.0",
"karma-jasmine": "1.1.0",
"karma-jasmine-jquery": "hmrc/karma-jasmine-jquery#5f308457fd",
"karma-jasmine-matchers": "3.7.0",
"karma-junit-reporter": "1.2.0",
"karma-script-launcher": "1.0.0",
"karma-spec-reporter": "0.0.31",
"kss": "3.0.1",
"modernizr": "3.11.3",
"pretty-hrtime": "1.0.0",
"require-dir": "0.3.2",
"sass": "1.35.1",
"sticky-header": "0.2.1",
"tcp-port-used": "1.0.1",
"upath": "1.0.2",
"vinyl-buffer": "1.0.1",
"vinyl-source-stream": "2.0.0",
"yargs": "15.4.1"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browser": {
"jquery": "./node_modules/jquery/dist/jquery.js",
"mdtpdf": "./assets/javascripts/modules/mdtpdf.js",
"details": "./node_modules/govuk_frontend_toolkit/javascripts/govuk/details.polyfill.js",
"govuk-template": "./assets/javascripts/vendor/govuk-template.js",
"datatables": "./node_modules/datatables/media/js/jquery.dataTables.js",
"base64": "./node_modules/js-base64/base64.js",
"json3": "./node_modules/json3/lib/json3.js",
"javascripts": "./assets/javascripts/index.js"
},
"browserify-shim": {
"jquery": {
"exports": "$"
},
"validate": {
"depends": [
"jquery",
"delegate"
]
},
"json3": {
"exports": "JSON"
},
"mdtpdf": {
"depends": "json3"
}
},
"devDependencies": {
"better-npm-audit": "^3.7.3",
"cheerio": "1.0.0-rc.10",
"globby": "6.1.0",
"gulp-standard": "10.0.0",
"gulp-stats": "0.0.4",
"gulp-tape": "0.0.9",
"handlebars": "4.7.7",
"karma-chrome-launcher": "3.1.0",
"karma-viewport": "0.4.2",
"marked": "2.0.0",
"nunjucks": "3.2.2",
"puppeteer": "5.2.1",
"sinon": "1.17.7",
"tap-spec": "5.0.0",
"tape": "4.6.3"
}
}