-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
35 lines (35 loc) · 1.01 KB
/
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
{
"name": "sift-string",
"version": "0.0.2",
"description": "Fast String Distance (SIFT) Algorithm",
"main": "index.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "mocha --ui bdd",
"coverage": "istanbul cover ./node_modules/.bin/_mocha -- -u exports -R spec",
"c-build": "component build --dev",
"c-install": "component install --dev",
"c-clean": "rm -fr build components template.js",
"c-open": "opener ./examples/spellcheck/index.html",
"c-demo": "npm run c-install && npm run c-build && npm run c-open"
},
"devDependencies": {
"mocha": "1.15.x",
"istanbul": "0.1.46",
"should": "2.1.x",
"opener": "1.3.x"
},
"repository": {
"type": "git",
"url": "git://github.com/timoxley/sift.git"
},
"keywords": [
"string", "string distance", "sift", "sift3"
],
"author": "MailCheck",
"license": "MIT",
"readmeFilename": "Readme.md",
"gitHead": "a8c277d4636e222a30600d872f3632b506d13874"
}