forked from initialspark/nhsuk-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.48 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
{
"name": "nhsuk-frontend",
"version": "3.0.2",
"description": "NHS.UK frontend contains the code you need to start building user interfaces for NHS websites and services.",
"scripts": {
"prepare": "gulp bundle",
"build": "gulp build",
"start": "gulp",
"test": "npm run lint && npm run jest:ci",
"lint": "npm run lint:js && npm run lint:css && npm run lint:html",
"lint:js": "eslint -c ./tests/linters/.eslintrc.js packages/components/**/*.js",
"lint:css": "sass-lint -c ./tests/linters/.sass-lint.yml 'packages/**/*.scss' -v -q",
"lint:html": "htmlhint --config ./tests/linters/.htmlhintrc ./dist/app/components/**/*.html",
"backstop:ref": "backstop --config=tests/backstop/backstop.js reference --docker",
"backstop:test": "backstop --config=tests/backstop/backstop.js test --docker",
"backstop:approve": "backstop --config=tests/backstop/backstop.js approve",
"backstop:clean": "rm -rf tests/backstop/bitmaps_test/*",
"build-gh-pages": "gulp bundle && BASE_URL='/nhsuk-frontend' gulp docs:build",
"build-gh-release": "gulp zip",
"jest:dev": "jest --watch",
"jest:ci": "jest"
},
"dependencies": {
"accessible-autocomplete": "^2.0.1",
"sass-mq": "^4.0.2"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"babel-loader": "^8.0.6",
"backstopjs": "^4.3.2",
"eslint": "^6.5.1",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-nhsuk": "^1.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^22.20.0",
"gulp": "^4.0.2",
"gulp-clean": "^0.4.0",
"gulp-clean-css": "^4.2.0",
"gulp-connect": "^5.7.0",
"gulp-nunjucks": "^5.0.1",
"gulp-rename": "^1.4.0",
"gulp-sass": "^4.0.2",
"gulp-uglify": "^3.0.2",
"gulp-zip": "^5.0.1",
"htmlhint": "^0.11.0",
"husky": "^3.0.9",
"jest": "^24.9.0",
"minimist": "^1.2.0",
"node-sass": "^4.12.0",
"nunjucks": "^3.2.0",
"sass-lint": "^1.13.1",
"webpack-stream": "^5.2.1"
},
"eslintConfig": {
"extends": "./tests/linters/.eslintrc.js"
},
"sasslintConfig": "./tests/linters/.sass-lint.yml",
"husky": {
"hooks": {
"pre-push": "npm test"
}
},
"files": [
"dist",
"packages"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nhsuk/nhsuk-frontend.git"
},
"homepage": "https://nhsuk.github.io/nhsuk-frontend/",
"bugs": {
"url": "https://github.com/nhsuk/nhsuk-frontend/issues"
},
"license": "MIT"
}