forked from id-sk/id-sk-frontend
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 3.11 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
{
"private": true,
"name": "govuk-frontend-repository",
"description": "Used only for the development of GOV.UK Frontend, see `package/package.json` for the published `package.json`",
"engines": {
"node": "8.9.4"
},
"license": "MIT",
"scripts": {
"preinstall": "node bin/check-nvmrc.js",
"prestart": "node bin/check-nvmrc.js",
"start": "gulp dev",
"heroku": "gulp copy-assets && gulp sassdoc && node app/start.js",
"pre-release": "node bin/check-nvmrc.js && ./bin/pre-release.sh",
"release": "node bin/check-nvmrc.js && ./bin/release.sh",
"release-to-branch": "node bin/check-nvmrc.js && ./bin/release-to-branch.sh",
"build:package": "node bin/check-nvmrc.js && gulp build:package --destination 'package' && npm run test:build:package",
"build:dist": "node bin/check-nvmrc.js && gulp build:dist --destination 'dist' && npm run test:build:dist",
"test": "standard && gulp test && gulp copy-assets && jest --testPathIgnorePatterns='after-*'",
"test:build:package": "jest tasks/gulp/__tests__/after-build-package.test.js",
"test:build:dist": "jest tasks/gulp/__tests__/after-build-dist.test.js"
},
"devDependencies": {
"autoprefixer": "^9.3.1",
"body-parser": "^1.18.3",
"cheerio": "^1.0.0-rc.2",
"cookie-parser": "^1.4.4",
"cssnano": "^4.1.7",
"express": "^4.16.4",
"express-validator": "^5.3.1",
"glob": "^7.1.3",
"gulp": "^3.9.1",
"gulp-better-rollup": "3.1.0",
"gulp-changed": "^3.2.0",
"gulp-data": "^1.3.1",
"gulp-debug": "^4.0.0",
"gulp-eol": "^0.2.0",
"gulp-filter": "^5.1.0",
"gulp-if": "^2.0.2",
"gulp-nunjucks": "^4.0.0",
"gulp-plumber": "^1.2.0",
"gulp-postcss": "^8.0.0",
"gulp-rename": "^1.4.0",
"gulp-sass": "^4.0.2",
"gulp-sass-lint": "^1.4.0",
"gulp-task-listing": "^1.1.0",
"gulp-to-markdown": "^1.0.0",
"gulp-uglify": "^3.0.1",
"html5shiv": "^3.7.3",
"jest": "^23.6.0",
"jest-axe": "^2.1.4",
"jest-serializer-html": "^5.0.0",
"js-yaml": "^3.12.0",
"map-stream": "0.0.7",
"merge-stream": "^1.0.1",
"node-sass": "^4.10.0",
"nodemon": "^1.18.7",
"oldie": "^1.3.0",
"outdent": "^0.7.0",
"postcss-pseudo-classes": "^0.2.0",
"postcss-scss": "^2.0.0",
"puppeteer": "^1.10.0",
"recursive-readdir": "^2.2.2",
"request": "^2.88.0",
"run-sequence": "^2.2.1",
"sass-color-helpers": "^2.1.1",
"sassdoc": "^2.5.1",
"standard": "^12.0.1",
"vinyl-paths": "^2.1.0",
"yargs": "^12.0.5"
},
"optionalDependencies": {
"fsevents": "*"
},
"browserslist": [
">0.1%",
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Edge versions",
"last 2 Samsung versions",
"Safari >= 9",
"ie 8-11",
"iOS >= 9"
],
"standard": {
"ignore": [
"/dist/**/*.js",
"/package/**/*.js",
"/src/vendor/polyfills/**/*.js"
]
},
"jest": {
"setupTestFrameworkScriptFile": "./config/jest-setup.js",
"snapshotSerializers": [
"jest-serializer-html"
],
"globalSetup": "./lib/puppeteer/setup.js",
"globalTeardown": "./lib/puppeteer/teardown.js"
}
}