-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.6 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
{
"name": "@coorpacademy/update-node",
"version": "7.2.0",
"description": "Update your node dependencies while you sleep",
"main": "src/index.js",
"bin": {
"update-node": "./bin/update-node.js"
},
"engines": {
"node": ">=18.12.1"
},
"author": "Coorpacademy Tech Team",
"license": "MIT",
"homepage": "https://github.com/Coorpacademy/update-node",
"repository": {
"type": "git",
"url": "https://github.com/Coorpacademy/update-node.git"
},
"bugs": {
"url": "https://github.com/Coorpacademy/update-node/issues/new"
},
"files": [
"src",
"bin",
"packages.json",
"README.md"
],
"scripts": {
"test": "npm run lint && nyc npm run test:all",
"test:all": "npm run test:unit && npm run test:integration",
"test:integration": "scripts/integration-test.sh",
"test:unit": "ava",
"lint": "eslint src/ *.json --ext .js,.json",
"lint:fix": "npm run lint -- --fix",
"start": "node ./src/index.js",
"update": "node src"
},
"dependencies": {
"chalk": "^4.1.2",
"execa": "^4.1.0",
"find-up": "^5.0.0",
"got": "^11.8.6",
"joi": "^17.13.3",
"lodash": "4.17.21",
"minimatch": "^10.0.1",
"p-map": "^4.0.0",
"p-map-series": "^2.1.0",
"p-reduce": "^2.1.0",
"pad-stream": "^2.0.0",
"protocall": "^2.0.0",
"pumpify": "^2.0.1",
"semver": "^7.6.3",
"split2": "^3.2.2",
"through2": "^4.0.2",
"yaml": "^2.6.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@coorpacademy/eslint-plugin-coorpacademy": "14.0.0",
"ava": "^5.3.1",
"eslint": "^8.57.1",
"nyc": "^17.1.0"
}
}