forked from openfoodfacts/openfoodfacts-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 3.16 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": "product-opener",
"version": "1.0.0",
"description": "",
"main": "",
"private": true,
"scripts": {
"build": "gulp",
"test": "yarn run test:lang && yarn run prove && yarn run lint && yarn run perlc",
"test:lang": "yarn run test:lang:common && yarn run test:lang:en",
"test:lang:en": "perl scripts/check_po_file.pl po/tags/en.po",
"test:lang:common": "perl scripts/check_po_file.pl po/common/en.po",
"prove": "prove -l",
"lint": "yarn run lint:js && yarn run lint:css && yarn run lint:scss",
"lint:js": "eslint html/js/product-multilingual.js html/js/search.js html/js/display-tag.js",
"lint:css": "stylelint html/css/product-multilingual.css",
"lint:scss": "stylelint scss/app.scss",
"perlc": "yarn run perlc:startup && yarn run perlc:cgi",
"perlc:startup": "perl -c -CS -Ilib lib/startup_apache2.pl",
"perlc:cgi": "node compile_cgi.js",
"postinstall": "node -e \"try { require('fs').symlinkSync(require('path').resolve('node_modules/@bower_components'), 'html/bower_components', 'junction') } catch (e) { }\" && opencollective-postinstall"
},
"repository": {
"type": "git",
"url": "https://github.com/openfoodfacts/openfoodfacts-server.git"
},
"author": "Open Food Facts Association",
"license": "GNU Affero General Public License",
"bugs": {
"url": "https://github.com/openfoodfacts/openfoodfacts-server/issues"
},
"homepage": "https://github.com/openfoodfacts/openfoodfacts-server#readme",
"os": [
"darwin",
"linux",
"win32"
],
"dependencies": {
"@bower_components/ManUp.js": "https://github.com/boyofgreen/ManUp.js.git#*",
"@bower_components/foundation": "zurb/bower-foundation#^5.5.3",
"@bower_components/foundation-icon-fonts": "zurb/foundation-icon-fonts#*",
"@bower_components/iolazyload": "cdowdy/io-lazyload#^1.2.0",
"@bower_components/jquery-ui": "components/jqueryui#^1.12.1",
"@bower_components/leaflet": "Leaflet/Leaflet#>=1.0.0",
"@bower_components/leaflet.markercluster": "Leaflet/Leaflet.markercluster#>=1.0.0",
"@bower_components/osmtogeojson": "tyrasd/osmtogeojson#^2.2.12",
"@bower_components/papaparse": "mholt/papaparse#^4.3.6",
"ManUp.js": "https://github.com/boyofgreen/ManUp.js.git#*",
"components-jqueryui": "components/jqueryui#^1.12.1",
"foundation-icon-fonts": "zurb/foundation-icon-fonts#*",
"foundation-sites": "zurb/bower-foundation#^5.5.3",
"gulp": "^3.9.1",
"gulp-clean-css": "^2.3.2",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.4.0",
"iolazyload": "cdowdy/io-lazyload#^1.2.0",
"leaflet": "Leaflet/Leaflet#>=1.0.0",
"leaflet.markercluster": "Leaflet/Leaflet.markercluster#>=1.0.0",
"opencollective-postinstall": "^2.0.1",
"osmtogeojson": "tyrasd/osmtogeojson#^2.2.12",
"papaparse": "mholt/papaparse#^4.3.6",
"yarn": "^1.2.1",
"opencollective": "^1.0.3"
},
"devDependencies": {
"eslint": "^5.6.1",
"stylelint": "^9.6.0",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-scss": "^3.3.1"
},
"engines": {
"yarn": ">= 1.0.0"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/openfoodfacts-server"
}
}