-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.34 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
{
"name": "switcher-map",
"author": {
"name": "Kipp Ashford",
"email": "kipp@ashfo.co"
},
"version": "0.9.1",
"description": "A simple, lightweight, functional utility for building clean conditional checks. It makes a great replacement for cumbersome switch statements.",
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.mjs",
"unpkg": "dist/index.min.js",
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/volkipp/switcher.git"
},
"files": [
"/src",
"/dist"
],
"types": "./dist/index.d.ts",
"devDependencies": {
"@rollup/plugin-typescript": "^8.3.0",
"@tsconfig/node14": "^1.0.1",
"@types/jest": "^27.0.1",
"@types/node": "^16.7.9",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.1.0",
"prettier": "^2.3.2",
"rollup": "^2.58.0",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typescript": "^4.4.4"
},
"scripts": {
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "jest",
"build": "rollup -c"
}
}