-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1021 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 1021 Bytes
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 populate-languages && npm run sass-compiler && npm run build-svg",
"sass-compiler": "./node_modules/.bin/sass --style=compressed --source-map ./assets/scss/styles.scss ./dist/styles.css",
"populate-languages": "node bin/populateScssLanguages.js && node bin/populatePhpLanguages.js",
"copy-svg": "node bin/copySvg.js",
"build-svg": "node bin/buildSvg.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git@github.com:weglot/languages.git"
},
"homepage": "https://github.com/weglot/languages#readme",
"devDependencies": {
"flag-icons": "^7.5.0",
"jest": "^30.3.0",
"sass": "^1.99.0",
"svgo": "^4.0.1"
}
}