-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 964 Bytes
/
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
{
"name": "@tvkitchen/appliances",
"private": true,
"repository": "github:tvkitchen/appliances",
"author": "Bad Idea Factory <[email protected]>",
"license": "LGPL-3.0",
"scripts": {
"clean": "rimraf packages/*/lib",
"build": "yarn clean && yarn workspaces run babel --root-mode upward src -d lib",
"lint": "eslint .",
"test": "jest"
},
"files": [
"lib/",
"src/"
],
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.8.7",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^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"
}
}