-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.16 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.16 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
{
"name": "char-series",
"version": "2.0.0",
"description": "Just a simple function to generate an array of characters form the given range string.",
"keywords": [
"characters",
"range-expansion",
"character-range",
"character-series"
],
"author": {
"role": "Developer",
"name": "Sifat Hossain",
"email": "hsifat@protonmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/h-sifat/char-series.git"
},
"bugs": {
"url": "https://github.com/h-sifat/char-series/issues"
},
"homepage": "https://github.com/h-sifat/char-series#readme",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"series": "cli/index.js"
},
"files": [
"cli",
"dist"
],
"scripts": {
"test": "jest",
"build": "webpack",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepublishOnly": "npm test && npm run build"
},
"devDependencies": {
"jest": "^27.4.5",
"ts-jest": "^27.1.2",
"webpack": "^5.65.0",
"ts-loader": "^9.2.6",
"webpack-cli": "^4.9.1",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.4"
}
}