-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.21 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
{
"name": "root",
"private": true,
"description": "Interface-level abstract definitions, DTOs, type definitions for use across TV Kitchen components.",
"repository": "git@github.com:tvkitchen/base.git",
"author": "Bad Idea Factory <biffuddotcom@biffud.com>",
"license": "LGPL-3.0",
"scripts": {
"clean": "rimraf packages/*/lib",
"build": "yarn clean && yarn workspaces run babel --root-mode upward src -d lib",
"lint": "eslint .",
"prepare": "yarn build",
"prepublishOnly": "yarn test && yarn lint",
"pretest": "yarn build",
"test": "jest"
},
"files": [
"lib/",
"src/"
],
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-export-namespace-from": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/register": "^7.8.6",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.20.1",
"jest": "^25.4.0",
"rimraf": "^3.0.2"
},
"engines": {
"node": ">=16"
}
}