-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 855 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 855 Bytes
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
{
"name": "@aqrojo/when",
"version": "2.0.7",
"description": "js pattern matching utility that helps you to write cleaner code",
"author": "Agustin Quintanilla <aqrojo@oneclick.es> (https://github.com/aqrojo)",
"license": "MIT",
"homepage": "https://github.com/aqrojo/when",
"source": "src/index.js",
"main": "dist/index.js",
"module": "dist/index.module.js",
"unpkg": "dist/index.umd.js",
"bugs": {
"url": "https://github.com/aqrojo/when/issues"
},
"keywords": [
"utility",
"clean code",
"ternary",
"pattern matching",
"conditional",
"js"
],
"scripts": {
"build": "microbundle",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/aqrojo/when"
},
"devDependencies": {
"jest": "^25.3.0",
"microbundle": "^0.13.0"
},
"dependencies": {}
}