-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.41 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
{
"name": "patty-melt",
"version": "0.1.3",
"description": "Pattern matching in JavaScript and Typescript made simple.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run build:types && npm run build:js",
"build:js": "babel src --out-dir dist --extensions \".ts\" --source-maps inline",
"build:types": "tsc --emitDeclarationOnly",
"bundle": "webpack",
"lint": "eslint . --ext .ts",
"prepublish": "npm run build",
"test": "jest",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joemaffei/patty-melt.git"
},
"author": "Joe Maffei <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/joemaffei/patty-melt/issues"
},
"homepage": "https://github.com/joemaffei/patty-melt#readme",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@types/jest": "^26.0.15",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"babel-loader": "^8.2.1",
"eslint": "^7.13.0",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"typescript": "^4.0.5",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0"
}
}