-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·52 lines (52 loc) · 1.57 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "text-sound-similarity",
"description": "JavaScript library useful to find degrees of similarity between text's phonetics",
"version": "1.0.2",
"license": "MIT",
"scripts": {
"lint": "eslint ./src ./tests",
"build": "NODE_ENV=production webpack --progress",
"test": "NODE_ENV=testing karma start --single-run",
"test:watch": "NODE_ENV=testing karma start",
"profile": "webpack --json | webpack-bundle-size-analyzer"
},
"devDependencies": {
"babel-core": "6.x.x",
"babel-eslint": "4.x.x",
"babel-istanbul-loader": "^0.1.0",
"babel-loader": "^7.0.0",
"babel-polyfill": "6.x.x",
"babel-preset-es2015": "6.x.x",
"babel-preset-stage-2": "6.x.x",
"chai": "^4.0.2",
"eslint": "1.7.x",
"eslint-plugin-babel": "2.x.x",
"karma": "^1.7.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.1.1",
"karma-coverage": "^1.1.1",
"karma-coveralls": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.3",
"karma-nyan-reporter": "^0.2.5",
"karma-webpack": "^2.0.3",
"mocha": "^3.4.2",
"webpack": "^2.6.1",
"webpack-bundle-size-analyzer": "^2.7.0"
},
"main": "dist/index.js",
"author": "Javier Perez",
"bugs": {
"url": "https://github.com/sljavi/text-sound-similarity/issues"
},
"homepage": "https://github.com/sljavi/text-sound-similarity",
"repository": {
"type": "git",
"url": "https://github.com/sljavi/text-sound-similarity.git"
},
"dependencies": {
"lodash": "^4.17.4",
"metaphone": "^1.0.1",
"string-similarity": "^1.2.0"
}
}