forked from gdgphilippines/devfest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.1 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.1 KB
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "devfest",
"description": "GDG Devfest 2017",
"private": true,
"version": "0.0.2",
"author": {
"name": "Toni-Jan Keith Monserrat",
"email": "tjmonsi@gmail.com"
},
"repository": {
"type": "git",
"url": "git://github.com/gdgphilippines/devfest.git"
},
"bugs": {
"url": "https://github.com/tjmonsi/devfest/issues"
},
"scripts": {
"test": "cd gulp && karma start karma.conf.js",
"test-ci": "cd gulp && karma start karma.conf.js --single-run",
"test-without-screen": "cd gulp && karma start karma.conf.js",
"test-with-screen": "export DISPLAY=:0 && wct --skip-plugin sauce --skip-plugin chrome",
"serve": "firebase serve",
"serve-c9": "firebase serve -p $PORT -o $IP",
"start": "cd gulp && ./node_modules/.bin/gulp --watch",
"build": "cd gulp && ./node_modules/.bin/gulp",
"build-production": "cd gulp && ./node_modules/.bin/gulp --prod"
},
"dependencies": {
"indexeddbshim": "^3.0.4",
"marked": "^0.3.6",
"path-to-regexp": "^1.7.0",
"redux": "^3.7.2"
},
"devDependencies": {
"babel-eslint": "^7.2.3",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"chai": "^4.1.2",
"eslint-plugin-html": "^3.2.0",
"gulp-markdox": "^0.1.2",
"standard": "^10.0.3",
"workbox-build": "^2.0.0",
"workbox-routing": "^1.1.0",
"workbox-sw": "^1.1.0"
},
"standard": {
"globals": [
"$",
"jQuery",
"fetch",
"Polymer",
"CustomEvent",
"ga",
"performance"
],
"ignore": [
"node_modules",
"bower_components",
"node_modules/**",
"bower_components/**",
"node_modules\\**",
"bower_components\\**",
"test/**",
"test\\**",
"**/node_modules/**",
"**/bower_components/**",
"**\\bower_components\\**",
"**\\node_modules\\**",
"**\\test\\**",
"**/test/**",
"node_modules/**",
"bower_components/**",
"src/test/**"
],
"plugins": [
"html"
],
"parser": "babel-eslint",
"validate": [
"javascript",
"html"
]
},
"resolutions": {
"regenerator-runtime": "0.11.0",
"semver": "5.4.1",
"minimist": "1.2.0",
"readable-stream": "2.3.3",
"isarray": "1.0.0",
"string_decoder": "1.0.3",
"object-assign": "4.1.1",
"string-width": "2.1.1",
"strip-ansi": "4.0.0",
"is-fullwidth-code-point": "2.0.0",
"ansi-regex": "3.0.0",
"assert-plus": "1.0.0",
"lodash": "4.17.4",
"domelementtype": "1.3.0",
"commander": "2.11.0",
"doctrine": "2.0.0",
"acorn": "5.1.1",
"find-up": "2.1.0",
"path-exists": "3.0.0",
"workbox-sw": "2.0.0",
"nan": "2.7.0",
"debug": "2.6.8",
"ms": "2.0.0",
"lodash.template": "4.4.0",
"lodash.templatesettings": "4.1.0",
"tmp": "0.0.33",
"braces": "1.8.5",
"kind-of": "4.0.0",
"expand-range": "1.8.2",
"is-number": "3.0.0",
"repeat-string": "1.6.1",
"wordwrap": "1.0.0",
"component-emitter": "1.2.1",
"glob": "7.1.2",
"supports-color": "3.1.2"
}
}