-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 904 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 904 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
30
31
32
33
34
35
36
{
"name": "translingual",
"author": "Evgeny Kolyakov <thenetfreaker@gmail.com>",
"description": "Multilingual transliteration - phonetic visualization using transcription.",
"version": "1.1.7",
"homepage": "https://github.com/freaker2k7/translingual",
"repository": "freaker2k7/translingual",
"license": "Apache-2.0",
"keywords": [
"trans",
"transliterate",
"transliteration",
"multi",
"lingual"
],
"bin": {
"trans": "./src/bin.js"
},
"scripts": {
"clean": "rm -rf dist && mkdir dist",
"build": "node ./scripts/version-verify.js && npm run clean && (webpack -v || npm i -g webpack webpack-cli) && node_modules/webpack/bin/webpack.js",
"prepublishOnly": "npm run-script build",
"start": "node ./src/index.js",
"test": "node ./test/basic.js"
},
"engines": {
"node": ">= 0.10.0"
},
"files": [
"dist/",
"src/",
"LICENSE",
"README.md"
],
"dependencies": {}
}