-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
89 lines (89 loc) · 2.58 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
{
"name": "reformed-churches-locator",
"type": "app",
"license": "BSD-3-Clause-Clear",
"description": "The most up-to-date directory of Reformed churches worldwide.",
"authors": [
"Tim Black <[email protected]> (http://alwaysreformed.com/)",
"Doug Huston <>"
],
"repository": {
"type": "git",
"url": "https://github.com/timblack1/rcl.git"
},
"homepage": "https://github.com/timblack1/rcl#readme",
"keywords": [
"reformed",
"churches",
"locator",
"directory"
],
"bugs": {
"url": "https://github.com/timblack1/rcl/issues"
},
"browser": {
"hoodie": "./bower_components/hoodie-service/hoodie.js"
},
"dependencies": {
"hoodie": "28.1.1",
"hoodie-plugin-appconfig": "^2.0.1",
"hoodie-plugin-punk": "https://github.com/timblack1/hoodie-plugin-punk/tarball/patch-1",
"hoodie-plugin-users": "^2.2.2",
"hoodie-server": "^4.0.3",
"request": "^2.66.0"
},
"devDependencies": {
"browser-sync": "^2.12.5",
"browserify": "~14.4.0",
"connect-history-api-fallback": "^1.2.0",
"del": "^2.1.0",
"glob-all": "^3.0.2",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^4.0.0",
"gulp-cache": "^0.4.3",
"gulp-changed": "^3.1.0",
"gulp-connect": "^5.0.0",
"gulp-html-extract": "^0.2.0",
"gulp-if": "^2.0.1",
"gulp-imagemin": "^3.0.1",
"gulp-jscs": "^4.0.0",
"gulp-jscs-stylish": "^1.1.2",
"gulp-jshint": "^2.0.0",
"gulp-load-plugins": "^1.2.0",
"gulp-minify-css": "^1.2.3",
"gulp-minify-html": "^1.0.5",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-size": "^2.1.0",
"gulp-uglify": "^3.0.0",
"gulp-useref": "^3.1.0",
"gulp-vulcanize": "^6.1.0",
"http-proxy-middleware": "^0.17.0",
"jshint": "^2.9.2",
"jshint-stylish": "^2.1.0",
"merge-stream": "^1.0.0",
"require-dir": "^0.3.0",
"run-sequence": "^1.1.4",
"semantic-release": "^6.3.6",
"vulcanize": ">=1.14.8",
"web-component-tester": "^6.0.0"
},
"scripts": {
"test": "node_modules/hoodie-server/bin/start --custom-ports=3002,3003,3004 & pid=$! && wct && kill $pid",
"start": "gulp serve",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"start-production": "npm install -g pm2@latest && pm2 updatePM2 && pm2 restart rcl_start",
"start-production-first": "scripts/pm2/first_start.sh"
},
"engines": {
"node": ">=0.12.0"
},
"hoodie": {
"plugins": [
"hoodie-plugin-appconfig",
"hoodie-plugin-punk",
"hoodie-plugin-users"
],
"hoodiejs": "node_modules/hoodie/src/hoodie.js"
}
}