-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.1 KB
/
package.json
File metadata and controls
31 lines (31 loc) · 1.1 KB
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
{
"name": "newbly-translator",
"version": "1.0.0",
"description": "JavaScript based plugin that shall be included into any Newbly partner website, and the plugin will insert translations of the main content (article) into the webpage.",
"main": "index.js",
"scripts": {
"start": "json-server --watch data/data.json --port 8888",
"test": "echo \"Error: no test specified\"",
"build": "babel js/script.js -d lib && minify js/script.js > js/script.min.js && minify css/style.css > css/style.min.css && cp ./js/script.min.js ./lib/js && cp ./css/style.min.css ./lib/css/",
"np": "np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Eunit99/newbly-translator.git"
},
"author": "Eunit",
"license": "ISC",
"bugs": {
"url": "https://github.com/Eunit99/newbly-translator/issues"
},
"homepage": "https://github.com/Eunit99/newbly-translator#readme",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"json-server": "^0.17.0",
"minify": "^9.1.0"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}