-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
29 lines (29 loc) · 1.12 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
{
"name": "@weglot/languages",
"description": "Weglot Languages provides a set languages data and classes allowing you to easily use multiples flags as images",
"main": "index.js",
"module": "index.esm.js",
"license": "UNLICENSED",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"build": "npm run sass-compiler && npm run populate-languages && npm run build-svg",
"sass-compiler": "./node_modules/.bin/node-sass --importer node_modules/node-sass-json-importer/dist/cli.js --recursive ./assets/scss/styles.scss --output ./dist --output-style compressed --source-map true",
"flags-downloads": "cp -a ./node_modules/flag-icon-css/flags/. ./images/flag-icon-css/",
"populate-languages": "node bin/populateLanguages.js",
"build-svg": "node bin/buildSvg.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "[email protected]:weglot/languages.git"
},
"homepage": "https://github.com/weglot/languages#readme",
"devDependencies": {
"flag-icon-css": "^4.1.7",
"jest": "^29.7.0",
"node-sass": "^9.0.0",
"node-sass-json-importer": "^4.3.0"
}
}