forked from hmrc/assets-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
133 lines (133 loc) · 3.86 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
129
130
131
132
133
{
"name": "assets-frontend",
"version": "0.0.1",
"description": "Frontend static assets for HMRC",
"repository": {
"type": "git",
"url": "https://github.com/hmrc/assets-frontend.git"
},
"engines": {
"node": ">=4.4.5",
"npm": ">=2.15.5"
},
"scripts": {
"start": "npm run dev",
"dev": "gulp",
"build": "gulp build",
"test": "gulp test",
"test:dev": "karma start assets/test/config/karma.conf.js no-single-run",
"comp-lib": "gulp component-library",
"comp-lib:watch": "nodemon -e html,js,css,png,jpeg -x 'npm run comp-lib:link && npm run comp-lib'",
"comp-lib:link": "npm link hmrc-component-library-template"
},
"keywords": [
"HMRC",
"assets"
],
"author": "HMRC",
"license": "Apache-2.0",
"dependencies": {
"browser-sync": "^2.4.0",
"browserify-istanbul": "^0.1.3",
"browserify-shim": "^3.8.2",
"datatables": "1.10.11",
"del": "^1.1.1",
"fingerprintjs": "^0.5.3",
"gulp": "^3.8.11",
"gulp-autoprefixer": "^3.0.0",
"gulp-concat": "^2.5.2",
"gulp-if": "^1.2.5",
"gulp-jscs": "^1.6.0",
"gulp-jshint": "^1.9.4",
"gulp-jshint-cached": "^1.4.2",
"gulp-json-editor": "^2.2.1",
"gulp-modernizr": "^1.0.0-alpha",
"gulp-notify": "^2.2.0",
"gulp-plumber": "^1.0.1",
"gulp-rename": "^1.2.0",
"gulp-sass": "^2.3.0",
"gulp-sourcemaps": "^1.5.1",
"gulp-uglify": "^1.1.0",
"gulp-util": "^3.0.4",
"gulp-zip": "^2.0.3",
"hmrc-component-library-template": "hmrc/component-library-template",
"jasmine-core": "^2.3.4",
"jquery": "^1.11.2",
"jquery-validation": "1.13.1",
"js-base64": "^2.1.7",
"jshint-stylish": "~0.1.5",
"json3": "^3.3.2",
"karma": "^0.13.19",
"karma-browserify": "^4.4.2",
"karma-chrome-launcher": "~0.2.2",
"karma-coverage": "^0.5.3",
"karma-firefox-launcher": "^0.1.4",
"karma-html2js-preprocessor": "~0.1.0",
"karma-jasmine": "0.3.6",
"karma-jasmine-jquery": "hmrc/karma-jasmine-jquery#5f308457fd",
"karma-jasmine-matchers": "^2.0.0-beta2",
"karma-junit-reporter": "~0.3.8",
"karma-phantomjs-launcher": "1.0.0",
"karma-script-launcher": "~0.1.0",
"karma-spec-reporter": "0.0.23",
"kss": "^2.4.0",
"lodash": "^3.5.0",
"minifyify": "^6.0.0",
"modernizr": "^3.0.0-alpha.4",
"phantomjs-prebuilt": "^2.1.7",
"pretty-hrtime": "^1.0.0",
"require-dir": "^0.2.0",
"run-sequence": "^1.0.2",
"stageprompt": "hmrc/stageprompt",
"sticky-header": "^0.2.1",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"vinyl-transform": "^1.0.0",
"watchify": "^2.6.0",
"gulp-stylelint": "^2.0.2",
"gulp-svgmin": "^1.2.2"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browser": {
"jquery": "./node_modules/jquery/dist/jquery.js",
"validate": "./node_modules/jquery-validation/src/core.js",
"delegate": "./node_modules/jquery-validation/src/delegate.js",
"basicpunc": "./node_modules/jquery-validation/src/additional/letterswithbasicpunc.js",
"mdtpdf": "./assets/javascripts/modules/mdtpdf.js",
"stageprompt": "./node_modules/stageprompt/script/stageprompt.js",
"details": "./assets/javascripts/modules/details.polyfill.js",
"govuk-template": "./assets/govuk_elements/govuk/public/javascripts/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"
},
"browserify-shim": {
"jquery": {
"exports": "$"
},
"validate": {
"depends": [
"jquery",
"delegate"
]
},
"stageprompt": {
"exports": "GOVUK"
},
"govuk-template": {
"depends": [
"stageprompt"
]
},
"json3": {
"exports": "JSON"
},
"mdtpdf": {
"depends": "json3"
}
}
}