-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.26 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "match-iz",
"browserGlobalName": "matchiz",
"version": "4.0.4",
"description": "A tiny pattern-matching library in the style of the TC39 proposal",
"author": "Conan Theobald",
"license": "MIT",
"keywords": [
"pattern-matching",
"switch-case",
"declarative-conditionals",
"match-when",
"otherwise"
],
"types": "./index.d.ts",
"main": "./dist/index.js",
"module": "dist/index.mjs",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"default": "./dist/index.js",
"types": "./index.d.ts"
},
"./dates": {
"import": "./dates/index.mjs",
"require": "./dates/index.js",
"default": "./dates/index.js",
"types": "./dates/index.d.ts"
},
"./dates/utc": {
"import": "./dates/utc/index.mjs",
"require": "./dates/utc/index.js",
"default": "./dates/utc/index.js",
"types": "./dates/utc/index.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"dates",
"CHANGELOG.md",
"README.md",
"LICENSE",
"index.d.ts"
],
"engines": {
"node": ">=10"
},
"homepage": "https://github.com/shuckster/match-iz",
"repository": {
"type": "git",
"url": "https://github.com/shuckster/match-iz"
},
"bugs": {
"url": "https://github.com/shuckster/match-iz/issues",
"email": "[email protected]"
},
"scripts": {
"test": "node ./tests/run.mjs",
"lint": "eslint src/*.mjs dates/**/*.mjs tests/*.mjs",
"build": "pnpm run build:esbuild",
"build:check": "node ./tests/browser.js",
"build:clean": "rimraf dist/ dates/index.js dates/utc/index.js; mkdir -p dist/",
"build:all": "pnpm run build:clean ; pnpm run build ; pnpm run build:check",
"build:watch": "pnpm run build:clean; nodemon ./build-config/esbuild.mjs",
"build:esbuild": "node ./build-config/esbuild.mjs"
},
"devDependencies": {
"compose-paths": "^1.2.3",
"dedent": "^0.7.0",
"esbuild": "^0.18.20",
"eslint": "^8.53.0",
"nodemon": "^2.0.22",
"rimraf": "^5.0.5",
"typescript": "^5.2.2"
},
"packageManager": "[email protected]+sha512.e5a7e52a4183a02d5931057f7a0dbff9d5e9ce3161e33fa68ae392125b79282a8a8a470a51dfc8a0ed86221442eb2fb57019b0990ed24fab519bf0e1bc5ccfc4"
}