-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 843 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
{
"name": "options-combination-handler",
"version": "0.0.6",
"description": "The purpose of this package is to handle option combinations, merge them to make it easier and clearest to show them",
"main": "lib/src/OptionHandler.js",
"types": "lib/src/OptionHandler.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/riccycastro/options-combination-handler"
},
"scripts": {
"start": "npx tsc index.ts",
"watch": "npx tsc -w",
"test": "jest",
"t-watch": "npx jest --watch"
},
"keywords": [
"options",
"handler",
"options-handler",
"combinatios",
"merge",
"find",
"all"
],
"author": "Ricardo Castro",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.20",
"jest": "^26.6.3",
"ts-jest": "^26.5.3",
"typescript": "^4.2.3"
}
}