UNPKG

1.64 kBJSONView Raw
1{
2 "name": "@coorpacademy/update-node",
3 "version": "4.0.0",
4 "description": "Update your node dependencies while you sleep",
5 "main": "src/index.js",
6 "bin": {
7 "update-node": "./bin/update-node.js"
8 },
9 "engines": {
10 "node": ">=10.13",
11 "npm": "^6.1"
12 },
13 "author": "Coorpacademy Tech Team",
14 "license": "MIT",
15 "homepage": "https://github.com/Coorpacademy/update-node",
16 "repository": {
17 "type": "git",
18 "url": "https://github.com/Coorpacademy/update-node.git"
19 },
20 "bugs": {
21 "url": "https://github.com/Coorpacademy/update-node/issues/new"
22 },
23 "files": [
24 "src",
25 "bin",
26 "packages.json",
27 "README.md"
28 ],
29 "scripts": {
30 "test": "npm run lint && nyc npm run test:all",
31 "test:all": "npm run test:unit && npm run test:integration",
32 "test:integration": "scripts/integration-test.sh",
33 "test:unit": "ava",
34 "lint": "eslint src/ *.json --ext .js,.json",
35 "lint:fix": "npm run lint -- --fix",
36 "start": "node ./src/index.js",
37 "publish-coverage": "codecov",
38 "update": "node src"
39 },
40 "dependencies": {
41 "bluebird": "3.7.2",
42 "chalk": "^4.1.0",
43 "find-up": "^5.0.0",
44 "joi": "^17.3.0",
45 "lodash": "4.17.20",
46 "minimatch": "^3.0.4",
47 "pad-stream": "^2.0.0",
48 "protocall": "^2.0.0",
49 "pumpify": "^2.0.1",
50 "request": "2.88.2",
51 "semver": "^7.3.4",
52 "split2": "^3.2.2",
53 "through2": "^4.0.2",
54 "yaml": "^1.10.0",
55 "yargs": "^16.2.0"
56 },
57 "devDependencies": {
58 "@coorpacademy/eslint-plugin-coorpacademy": "10.2.0",
59 "ava": "^3.15.0",
60 "codecov": "^3.8.1",
61 "eslint": "7.17.0",
62 "nyc": "^15.1.0"
63 }
64}