-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.04 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
{
"name": "vefverdlaun.is",
"version": "0.1.0",
"description": "New website for SVEF",
"homepage": "https://github.com/svef/vefverdlaun.is#readme",
"license": "ISC",
"engines": {
"node": "8"
},
"repository": {
"type": "git",
"url": "git+https://github.com/svef/vefverdlaun.is.git"
},
"bugs": {
"url": "https://github.com/svef/vefverdlaun.is/issues"
},
"author": "Benedikt D Valdez <benediktvaldez@gmail.com> (http://bdvs.info)",
"contributors": [],
"scripts": {
"dev": "supervisor --quiet --watch gulp,gulpfile.js --no-restart-on exit --exec gulp server",
"lint": "eslint src",
"test": "nyc ava",
"test-dev": "supervisor --quiet --watch test,src/scripts --no-restart-on exit --exec npm -- run test --silent",
"build": "gulp build",
"start": "node server"
},
"dependencies": {
"express": "^4.16.4"
},
"devDependencies": {
"ava": "^0.14.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babelify": "^7.3.0",
"browser-sync": "^2.12.7",
"browserify": "^13.0.1",
"connect-history-api-fallback": "^1.2.0",
"es6-promise": "^3.2.1",
"eslint": "^2.9.0",
"eslint-config-icelandair": "^1.0.0",
"eslint-plugin-import": "^1.8.0",
"glob": "^7.0.3",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.0",
"gulp-eslint": "^2.0.0",
"gulp-notify": "^2.2.0",
"gulp-plumber": "^1.1.0",
"gulp-pug": "^3.0.2",
"gulp-sass": "^2.3.1",
"gulp-uglify": "^1.5.3",
"gulp-util": "^3.0.7",
"gulp-watch": "^4.3.5",
"lodash": "^4.12.0",
"lodash.assign": "^4.0.8",
"nyc": "^6.4.4",
"rimraf": "^2.5.2",
"run-sequence": "^1.1.5",
"slug": "^0.9.1",
"supervisor": "^0.10.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"whatwg-fetch": "^1.0.0"
},
"ava": {
"files": [
"test/**/*.js"
],
"source": [
"src/**/*.js"
],
"failFast": true,
"verbose": true,
"require": [
"babel-register"
]
}
}