-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.13 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
{
"name": "mockapie",
"version": "0.0.0-dripip",
"repository": "[email protected]:jasonkuhrt/mockapie.git",
"author": "Jason Kuhrt",
"license": "MIT",
"files": [
"dist-cjs",
"dist-esm"
],
"exports": {
".": {
"require": "./dist-cjs/index.js",
"import": "./dist-esm/index.js"
}
},
"main": "./dist-cjs/index.js",
"module": "./dist-esm/index.js",
"scripts": {
"reflect:toc": "markdown-toc README.md -i --maxdepth 4 && prettier --write README.md",
"format": "yarn format:prettier",
"format:prettier": "prettier --write .",
"format:check": "yarn format:check:prettier",
"format:check:prettier": "prettier --check .",
"lint": "eslint . --ext .ts,.tsx --fix",
"lint:check": "eslint . --ext .ts,.tsx --max-warnings 0",
"dev": "yarn clean && tsc --build --watch tsconfig.cjs.json tsconfig.esm.json",
"build": "yarn clean && yarn build:cjs && yarn build:esm",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"test": "ava",
"clean": "rm -rf dist-cjs dist-esm node_modules/.cache",
"release:pr": "dripip pr",
"release:canary": "dripip preview",
"release:stable": "dripip stable",
"prepublishOnly": "yarn build",
"prepare": "ts-patch install -s"
},
"dependencies": {
"tslib": "^2.3.1"
},
"devDependencies": {
"@prisma-labs/prettier-config": "0.1.0",
"@types/node": "17.0.13",
"@typescript-eslint/eslint-plugin": "5.11.0",
"@typescript-eslint/parser": "5.11.0",
"ava": "4.0.1",
"dripip": "0.10.0",
"eslint": "8.8.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-deprecation": "1.3.2",
"eslint-plugin-only-warn": "1.0.3",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-tsdoc": "0.2.14",
"markdown-toc": "1.2.0",
"prettier": "2.5.1",
"ts-node": "10.5.0",
"ts-patch": "2.0.1",
"typescript": "4.5.5",
"typescript-snapshots-plugin": "1.7.0",
"typescript-transform-paths": "3.3.1"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
}
}