-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
40 lines (40 loc) · 988 Bytes
/
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
34
35
36
37
38
39
40
{
"name": "hyphen",
"version": "1.3.1",
"description": "Franklin M. Liang's hyphenation algorithm, implemented in Javascript.",
"main": "exports",
"scripts": {
"build": "node ./scripts/build.js && node ./scripts/build-exports.js",
"lint": "npx eslint hyphen.js",
"start": "npm run watch",
"test": "jest",
"watch": "npx nodemon -w ./src ./scripts/build.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ytiurin/hyphen"
},
"keywords": [
"hyphen",
"hyphenate",
"hyphenation",
"hyphenator"
],
"author": "Eugene Tiurin <yevhentiurin@gmail.com> (https://github.com/ytiurin)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ytiurin/hyphen/issues"
},
"homepage": "https://github.com/ytiurin/hyphen",
"files": [
"exports",
"patterns",
"hyphen.js"
],
"devDependencies": {
"eslint": "^6.8.0",
"jest": "^25.2.3",
"nodemon": "^2.0.2",
"prettier": "^2.0.2"
}
}