forked from alphagov/govuk_template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.23 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
{
"name": "hackney-template",
"private": "true",
"description": "The Hackney Template test application",
"repository": "unboxed/hackney_template",
"homepage": "",
"license": "MIT",
"engines": {
"node": ">=8.1.4"
},
"dependencies": {
"body-parser": "^1.14.1",
"del": "^3.0.0",
"express": "^4.15.2",
"govuk_frontend_toolkit": "^7.0.0",
"govuk-elements-sass": "^3.1.1",
"gulp": "^3.9.1",
"gulp-cssnano": "^2.1.2",
"gulp-mocha": "^4.3.1",
"gulp-nodemon": "^2.2.1",
"gulp-rename": "^1.2.2",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.6.1",
"gulp-util": "^3.0.8",
"node-sass": "^4.5.3",
"nunjucks": "^3.0.0",
"run-sequence": "^2.1.0",
"standard": "^10.0.2",
"supertest": "^3.0.0"
},
"scripts": {
"pretest": "npm run lint --silent",
"test": "standard && gulp test",
"lint": "bundle && bundle exec govuk-lint-sass assets/sass/elements/",
"start": "gulp develop",
"heroku-postbuild": "gulp build"
},
"standard": {
"ignore": [
"assets/javascripts/vendor/",
"tests"
]
},
"author": {
"name": "Unboxed",
"email": "hello@unboxed.co"
},
"bugs": {
"url": "https://github.com/unboxed/hackney_template/issues"
}
}