-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 840 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 840 Bytes
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
{
"name": "@sharkcore/yarn-tools",
"version": "1.0.2",
"bin": "./src/index.js",
"description": "Collection of tools to work with yarn-based repositories.",
"scripts": {
"precommit": "yarn run lint",
"test": "yarn run lint && yarn run jest",
"lint": "eslint --fix src __tests__"
},
"license": "Apache-2.0",
"main": "./src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/sharkcore/yarn-tools.git"
},
"engines": {
"node": ">=8"
},
"dependencies": {
"@yarnpkg/lockfile": "^1.1.0",
"commander": "^2.10.0",
"semver": "^5.3.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@sharkcore/eslint-config": "^1.0.0",
"eslint": "^4.11.0",
"eslint-plugin-jest": "^21.3.2",
"husky": "^0.14.3",
"jest": "^21.2.1"
}
}