-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.73 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.73 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "string-algorithms",
"version": "1.0.31",
"description": "Linear-time string search and comparison algorithms.",
"homepage": "https://github.com/burgaard/string-algorithms",
"bugs": {
"url": "https://github.com/burgaard/string-algorithms/issues",
"email": "kim@burgaard.us"
},
"author": {
"name": "Kim Burgaard",
"email": "kim@burgaard.us"
},
"license": "MIT",
"keywords": [
"suffix",
"array",
"suffix",
"tree",
"longest",
"common",
"substring",
"longest",
"common",
"lcp",
"linear",
"time",
"o(n)",
"algorithm"
],
"main": "lib/index.js",
"scripts": {
"lint": "eslint src/**/*.js",
"test": "jest --coverage",
"test-single": "jest --coverage longest-common-substring.spec.js",
"test-debug": "BABEL_ENV=dev node --inspect ./node_modules/.bin/jest --runInBand",
"build": "eslint src/**/*.js && jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && babel src --out-dir lib --ignore spec.js"
},
"devDependencies": {
"babel": "6.23.0",
"babel-cli": "6.24.1",
"babel-jest": "20.0.3",
"babel-preset-es2015": "6.24.1",
"coveralls": "^3.0.0",
"eslint": "4.18.2",
"eslint-config-airbnb-base": "11.3.1",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jest": "20.0.3",
"jest": "20.0.4",
"performance-now": "^2.1.0"
},
"dependencies": {},
"jest": {
"testPathIgnorePatterns": [
"node_modules",
"lib",
"coverage"
],
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/coverage/**",
"!**/lib/**",
"!**/node_modules/**",
"!**/vendor/**"
],
"coverageReporters": [
"text",
"lcov"
]
}
}