-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.26 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
{
"name": "string-dsa",
"version": "2.1.0",
"description": "String Data Structures and Algorithms Library in JavaScript",
"main": "src/index.js",
"files": [
"dist",
"src"
],
"scripts": {
"coverage": "nyc npm test",
"lint": "eslint ./src",
"test": "mocha --recursive",
"test:coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls",
"prod": "webpack -d"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thsubaku9/string-dsa.git"
},
"keywords": [
"String Algorithms",
"String Data Structures",
"Aho Corasick",
"Bloom Filter",
"Burrows Wheeler Transform",
"Custom Sort",
"Levenshtein Distance",
"Suffix Array",
"Trie"
],
"author": "Kaustubh J <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/thsubaku9/string-dsa/issues"
},
"homepage": "https://github.com/thsubaku9/string-dsa#readme",
"devDependencies": {
"babel-loader": "^8.1.0",
"coveralls": "^3.1.0",
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.1.3",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
}
}