-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.38 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
{
"name": "@tvkitchen/utilities",
"private": true,
"repository": "github:tvkitchen/utilities",
"author": "Bad Idea Factory <biffuddotcom@biffud.com>",
"license": "LGPL-3.0",
"scripts": {
"clean": "rimraf packages/*/lib",
"build": "yarn clean && yarn build:types && yarn build:transpile",
"build:transpile": "yarn workspaces run babel --extensions \".ts,.tsx\" --root-mode upward src -d lib",
"build:types": "yarn workspaces run tsc --project ../../tsconfig.build.json --rootDir src --outDir lib",
"lint": "yarn lint:formatting && yarn lint:types",
"lint:types": "tsc",
"lint:formatting": "eslint . --ext .ts,.tsx",
"test": "jest"
},
"files": [
"lib/",
"src/"
],
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.8.7",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@babel/preset-typescript": "^7.10.4",
"@tsconfig/node12": "^1.0.7",
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.20.1",
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"ts-jest": "^26.3.0",
"typescript": "^4.2.4"
},
"engines": {
"node": ">=12"
}
}