-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.13 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": "easy-range-numbers-with-steps",
"version": "1.0.2",
"description": "Minimal and handy utility to generate ranges of numbers with start, end and optional steps",
"source": "src/index.ts",
"main": "dist/main.js",
"module": "dist/module.js",
"types": "dist/index.d.ts",
"scripts": {
"watch": "parcel watch",
"build": "parcel build src/index.ts",
"test": "jest",
"test:init": "ts-jest config:init"
},
"repository": {
"type": "git",
"url": "https://github.com/ibrahimcesar/easy-ranges-numbers-with-steps.git"
},
"keywords": [
"array",
"numbers",
"steps"
],
"author": "Ibrahim Cesar",
"license": "MIT",
"bugs": {
"url": "https://github.com/ibrahimcesar/easy-ranges-numbers-with-steps/issues"
},
"homepage": "https://github.com/ibrahimcesar/easy-ranges-numbers-with-steps#readme",
"devDependencies": {
"@parcel/packager-ts": "^2.4.1",
"@parcel/transformer-typescript-types": "^2.4.1",
"@parcel/validator-typescript": "^2.4.1",
"@types/jest": "^27.4.1",
"jest": "^27.5.1",
"parcel": "^2.4.1",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
}
}