-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.87 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
{
"name": "switch-pattern",
"description": "pattern matching done right",
"version": "0.2.2",
"license": "MIT",
"author": {
"name": "arily",
"email": "[email protected]"
},
"scripts": {
"clear": "rm -rf dist && rm -rf output",
"clear:all": "rm -rf node_modules/ && npm run clear",
"test": "nyc ts-mocha -p tsconfig.json src/**/*.spec.ts",
"build:code": "npm run clear && ttsc -p tsconfig.cjs.json; ttsc -p tsconfig.esm.json;",
"build:declaration": "tsc -p tsconfig.types.json;",
"build": "npm run build:code && npm run build:declaration && node scripts/minify.mjs",
"build:test": "npm run build:code && ttsc -p tsconfig.json; node scripts/minify.mjs",
"build:clean": "rm -rf output"
},
"dependencies": {},
"maintainers": [
"arily <[email protected]>"
],
"devDependencies": {
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"esbuild": "^0.17.16",
"eslint": "^8.38.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"terser": "^5.16.8",
"ts-macros": "^2.2.1",
"ts-mocha": "^10.0.0",
"ttypescript": "^1.5.15",
"typescript": "^4.9.5"
},
"repository": {
"type": "git",
"url": "[email protected]:arily/switch-pattern.git"
},
"files": [
"dist",
"LICENSE",
"package.json",
"README.md",
"tsconfig.json"
],
"keywords": [
"typescript",
"pattern-matching",
"switch"
],
"types": "dist/index.d.ts",
"module": "dist/esm/index.js",
"main": "dist/cjs/index.js"
}