-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 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
{
"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.23.0",
"@babel/core": "^7.23.2",
"@babel/eslint-parser": "^7.22.15",
"@babel/preset-env": "^7.23.2",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^29.7.0",
"eslint": "^8.52.0",
"eslint-plugin-jest": "^27.4.3",
"jest": "^29.7.0",
"semantic-release": "^21.1.2"
}
}