-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.04 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
{
"name": "latinica2cirilica",
"version": "1.0.0",
"description": "Client side web application to convert Serbian Latin to Serbian Cyrillic",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"start": "webpack-dev-server",
"deploy": "rm -rf dist && npm run build && git commit . -m 'deploy' && git push && git subtree push --prefix dist origin gh-pages",
"deploy-w": "rimraf dist && npm run build && git add . && git push && git subtree push --prefix dist origin gh-pages"
},
"repository": {
"type": "git",
"url": "git+https://github.com/topce/latinica2cirilica.git"
},
"keywords": [
"latinica",
"cirilica"
],
"author": "topce",
"license": "MIT",
"bugs": {
"url": "https://github.com/topce/latinica2cirilica/issues"
},
"homepage": "https://github.com/topce/latinica2cirilica#readme",
"devDependencies": {
"cirilica": "0.10.0",
"copy-webpack-plugin": "11.0.0",
"webpack": "5.83.1",
"webpack-cli": "5.1.1",
"webpack-dev-server": "4.15.0"
}
}