forked from openfoodfacts/openfoodfacts-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.45 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
{
"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": "jshint --show-non-errors 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:product",
"perlc:startup": "perl -c -CS -Ilib lib/startup_apache2.pl",
"perlc:product": "perl -c -CS -Ilib cgi/product_multilingual.pl",
"postinstall": "node -e \"try { require('fs').symlinkSync(require('path').resolve('node_modules/@bower_components'), 'html/bower_components', 'junction') } catch (e) { }\""
},
"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": "git://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/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/jquery-ui": "components/jqueryui#^1.12.1",
"@bower_components/papaparse": "mholt/papaparse#^4.3.6",
"gulp": "^3.9.1",
"gulp-clean-css": "^2.3.2",
"gulp-sass": "^3.1.0",
"gulp-sourcemaps": "^2.4.0",
"yarn": "^1.2.1"
},
"devDependencies": {
"jshint": "^2.9.4",
"stylelint": "^8.3.1",
"stylelint-scss": "^2.2.0",
"stylelint-config-recommended-scss": "^3.0.0"
},
"engines": {
"yarn": ">= 1.0.0"
}
}