forked from josephting/manacher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "manacher",
"version": "0.0.0-development",
"description": "Manacher's algorithm to find longest palindrome in a string.",
"bugs": {
"url": "https://github.com/josephting/manacher/issues"
},
"main": "dist/index.js",
"scripts": {
"build": "babel src/index.js -d dist",
"test": "jest",
"test:coverage": "jest --coverage",
"semantic-release": "semantic-release",
"codecov": "codecov -f coverage/coverage-final.json"
},
"keywords": [
"manacher",
"palindrome"
],
"author": "Joseph Ting",
"license": "MIT",
"homepage": "https://github.com/josephting/manacher#readme",
"repository": {
"type": "git",
"url": "https://github.com/josephting/manacher.git"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"codecov": "^3.1.0",
"eslint": "^5.12.0",
"eslint-plugin-jest": "^22.1.3",
"jest": "^23.6.0",
"semantic-release": "^15.13.3"
}
}