forked from housinganywhere/match
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.3 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": "@housinganywhere/match",
"description": "Poor man's pattern matching",
"version": "1.1.1",
"main": "./dist/cmjs/index.js",
"module": "./dist/cmjs/index.js",
"es2015": "./dist/es2015/index.js",
"unpkg": "./dist/umd/index.js",
"sideEffects": false,
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://www.github.com/housinganywhere/match"
},
"author": "Christian Gill <[email protected]>",
"license": "MIT",
"keywords": [
"typescript",
"pattern-matching"
],
"scripts": {
"watch": "tsc -w --noEmit -p .",
"build": "yarn build:es2015 && yarn build:umd && yarn build:cmjs",
"build:es2015": "tsc --module es2015 --outDir dist/es2015",
"build:umd": "tsc --module umd --outDir dist/umd",
"build:cmjs": "tsc --module commonjs --outDir dist/cmjs",
"test": "jest --coverage",
"test:watch": "jest --watch",
"format": "prettier --write '**/*.{ts,json,md}'",
"format:changed": "pretty-quick",
"precommit": "pretty-quick --staged",
"prerelease": "yarn build",
"release": "np"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"husky": "^3.0.5",
"jest": "^24.9.0",
"np": "^5.0.3",
"prettier": "^1.18.2",
"pretty-quick": "^1.11.1",
"ts-jest": "^24.0.2",
"typescript": "^3.6.2"
}
}