-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
54 lines (54 loc) · 1.63 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
{
"name": "synp",
"version": "1.9.13",
"description": "Convert yarn.lock to package-lock.json and vice versa",
"keywords": [
"yarn",
"package-lock",
"package-lock.json",
"yarn.lock",
"convert",
"transform",
"translate"
],
"main": "index.js",
"bin": {
"synp": "./cli/synp.js"
},
"scripts": {
"test": "yarn test:lint && yarn cover:unit && yarn test:integration && yarn test:deps",
"test:lint": "standard",
"test:unit": "tape ./test/*.spec.js",
"test:integration": "cli/synp.js -s yarn.lock && rimraf package-lock.json",
"test:depcheck": "npm_config_yes=true npx depcheck --ignores @semantic-release/*,semantic-release",
"test:depaudit": "yarn audit --level=moderate --groups=dependencies; [[ $? -ge 4 ]] && exit 1 || exit 0",
"test:depauditfix": "npm_config_yes=true npx yarn-audit-fix --audit-level=moderate",
"test:deps": "yarn test:depcheck && yarn test:depaudit",
"cover:unit": "nyc --reporter=lcov --reporter=text yarn test:unit",
"postupdate": "yarn && yarn test:depauditfix && yarn test"
},
"author": "Aram Drevekenin <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/imsnif/synp.git"
},
"dependencies": {
"@yarnpkg/lockfile": "^1.1.0",
"bash-glob": "^2.0.0",
"colors": "1.4.0",
"commander": "^7.2.0",
"eol": "^0.9.1",
"lodash": "4.17.21",
"nmtree": "^1.0.6",
"semver": "^7.6.0",
"sort-object-keys": "^1.1.3"
},
"devDependencies": {
"nyc": "15.1.0",
"sinon": "^9.2.4",
"standard": "^16.0.4",
"tape": "^5.7.5",
"rimraf": "^3.0.2"
}
}