forked from scinos/yarn-deduplicate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.19 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
{
"name": "yarn-deduplicate",
"version": "1.1.1",
"bin": "./cli.js",
"description": "Deduplication tool for yarn.lock files",
"keywords": [
"yarn",
"yarn.lock",
"lockfile",
"duplicated",
"package manager",
"dedupe",
"deduplicate"
],
"scripts": {
"test": "eslint . && jest",
"lint": "eslint ."
},
"homepage": "https://github.com/atlassian/yarn-deduplicate#readme",
"bugs": "https://github.com/atlassian/yarn-deduplicate/issues",
"license": "Apache-2.0",
"author": "Sergio Cinos <scinos@atlassian.com>",
"main": "index.js",
"repository": {
"type": "git",
"url": "git@github.com:atlassian/yarn-deduplicate.git"
},
"engines": {
"node": ">=6",
"yarn": "^1.0.0"
},
"dependencies": {
"@yarnpkg/lockfile": "^1.1.0",
"commander": "^2.10.0",
"semver": "^5.3.0"
},
"devDependencies": {
"eslint": "^5.10.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-jest": "^22.1.2",
"eslint-plugin-prettier": "^3.0.0",
"jest": "^21.2.1",
"outdent": "^0.5.0",
"prettier": "^1.15.3"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/node_modules",
"<rootDir>/.history"
]
}
}