-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 966 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 966 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
37
{
"name": "@tpoisseau/pattern-matching",
"version": "1.0.5",
"description": "In waiting Pattern Matching proposal adoption",
"type": "module",
"main": "src/index.js",
"exports": {
".": "src/index.js",
"./comparators": "./src/comparators/index.js",
"./evaluators": "./src/evaluators/index.js"
},
"scripts": {
"test": "ava --timeout=2m",
"test:watch": "ava --watch",
"publish": "npm publish --access public",
"doc": "typedoc",
"postdoc": "cp .nojekyll docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tpoisseau/js-pattern-matching.git"
},
"keywords": [
"pattern-matching"
],
"author": "tpoisseau",
"license": "MIT",
"bugs": {
"url": "https://github.com/tpoisseau/js-pattern-matching/issues"
},
"homepage": "https://github.com/tpoisseau/js-pattern-matching#readme",
"devDependencies": {
"ava": "^3.6.0",
"typedoc": "^0.15.0"
},
"dependencies": {}
}