-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
60 lines (60 loc) · 1.31 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
{
"name": "yarn-isolate-workspace",
"version": "0.2.3",
"description": "will isolate one yarn workspace",
"main": "src/index.js",
"bin": {
"yarn-isolate-workspace": "src/index.js"
},
"files": [
"src"
],
"license": "MIT",
"keywords": [
"yarn",
"workspace",
"yarn isolate",
"yarn focus",
"yarn workspace",
"yarn workspaces",
"yarn workspaces isolate",
"yarn workspace isolate",
"lerna isolate"
],
"author": "Nir winkler <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/Madvinking/yarn-isolate-workspace.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -rf node_modules",
"test": "jest --config jest.config.js --silent=false full-cycle lock",
"lint": "eslint --quiet --color ."
},
"dependencies": {
"@yarnpkg/lockfile": "^1.1.0",
"fs-extra": "^9.1.0",
"fs-readdir-recursive": "1.1.0",
"glob": "7.1.6"
},
"devDependencies": {
"husky": "4.3.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"jest": "26.6.1",
"nodemon": "2.0.6",
"prettier": "^2.1.2"
},
"engines": {
"node": "<=15.0.1"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn test"
}
}
}