-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 935 Bytes
/
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
{
"name": "strikethrough-js",
"version": "3.0.3",
"description": "Manipulate strikethrough characters in Javascript",
"main": "dist/index.js",
"files": ["dist"],
"scripts": {
"build": "babel src --out-dir dist --ignore src/test",
"prepare": "husky install && rm -rf dist && npm run build",
"test": "jest"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ntltd/strikethrough-js.git"
},
"keywords": [
"strikethrough",
"string",
"char"
],
"author": "ntltd",
"bugs": {
"url": "https://github.com/ntltd/strikethrough-js/issues"
},
"homepage": "https://github.com/ntltd/strikethrough-js#readme",
"devDependencies": {
"@babel/cli": "^7.20.7",
"@babel/core": "^7.20.12",
"@babel/node": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"husky": "^8.0.3",
"jest": "^29.3.1"
},
"engines": {
"node": ">=14.0.0"
}
}