-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
90 lines (90 loc) · 2.32 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "updtr",
"version": "4.1.0",
"description": "Update outdated npm modules with zero pain™",
"main": "dist",
"scripts": {
"pretest": "npm run fixtures:ensure",
"test": "cross-env FORCE_COLOR=1 jest --coverage",
"test:watch": "jest --watch",
"posttest": "npm run lint",
"lint": "eslint --ignore-path ./.gitignore src test",
"build": "cross-env NODE_ENV=production rollup -c",
"prepublishOnly": "npm run build && node ./bin/updtr --help",
"release": "standard-version",
"fixtures:ensure": "babel-node ./test/helpers/setupFixtures.js",
"fixtures:rebuild": "babel-node ./test/helpers/cleanupFixtures.js && npm run fixtures:ensure"
},
"author": "[email protected]",
"license": "Unlicense",
"bin": {
"updtr": "./bin/updtr"
},
"dependencies": {
"@babel/runtime": "^7.15.3",
"ansi-escapes": "^4.3.0",
"chalk": "^4.1.2",
"cli-cursor": "^3.1.0",
"cli-spinners": "^2.6.0",
"detect-indent": "^6.0.0",
"es6-error": "^4.0.2",
"inquirer": "7.0.0",
"pify": "^4.0.1",
"semver": "^7.3.5",
"string-width": "^4.2.0",
"unicons": "0.0.3",
"yargs": "^15.1.0"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/node": "^7.14.9",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"@babel/register": "^7.15.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.0.6",
"clone": "^2.1.1",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-peerigon": "^25.3.1",
"eslint-plugin-jest": "^23.6.0",
"jest": "^25.1.0",
"rimraf": "^3.0.2",
"rollup": "^1.31.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-node-resolve": "^5.2.0",
"sinon": "^8.1.1",
"standard-version": "^9.3.1",
"stream-buffers": "^3.0.1",
"temp": "^0.9.4",
"wrap-ansi": "^6.2.0"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 2.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/peerigon/updtr.git"
},
"files": [
"bin",
"dist",
"README.md",
"LICENSE"
],
"jest": {
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/"
],
"coverageThreshold": {
"global": {
"branches": 94,
"functions": 94,
"lines": 94,
"statements": 94
}
}
}
}