-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
31 lines (31 loc) · 878 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
{
"name": "doublemetaphone",
"version": "0.1.2",
"main": "doublemetaphone.js",
"description": "Encode a string into a phonetic code with the Double Metaphone algorithm",
"keywords": ["phonetic", "metaphone", "codec", "sounds", "like"],
"homepage": "https://github.com/hgoebl/doublemetaphone",
"repository": {
"type": "git",
"url": "https://github.com/hgoebl/doublemetaphone.git"
},
"dependencies": {
},
"engines": {
"node": ">=0.4.12"
},
"author": {
"name": "Heinrich Göbl",
"email": "[email protected]",
"url": "http://www.goebl.com/"
},
"licenses": [
{
"type": "Apache 2.0",
"url": "http://github.com/hgoebl/doublemetaphone/raw/master/LICENSE"
}
],
"scripts": {
"test": "node test/test-as-node-module.js"
}
}