-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
37 lines (37 loc) · 956 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
{
"name": "braille",
"version": "1.2.0",
"description": "A Node module for converting text to Braille alphabet.",
"main": "index.js",
"scripts": {
"test": "mocha ./tests/test.js",
"prepublish": "npm prune"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nonemoticoner/braille.git"
},
"author": "Nonemoticoner <nonemoticoner@gmail.com> (https://nonemoticoner.github.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nonemoticoner/braille/issues"
},
"homepage": "https://github.com/Nonemoticoner/braille#readme",
"keywords": [
"js",
"javascript",
"braille",
"alphabet",
"code",
"converter",
"node",
"text",
"translator",
"translate"
],
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.0.2",
"should": "^11.1.0"
}
}