-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.55 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.55 KB
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
{
"name": "grunt-check-outdated",
"version": "1.3.0",
"description": "check for outdated dependencies",
"author": "Dirk Brenckmann <db.developer@gmx.de>",
"license": "MIT",
"engineStrict": true,
"engines": {
"node": ">=18"
},
"main": "tasks/tasks.js",
"repository": {
"type": "git",
"url": "git+https://github.com/db-developer/grunt-check-outdated.git"
},
"scripts": {
"all": "grunt all",
"build": "grunt build",
"coverage": "grunt coverage",
"docs": "grunt docs",
"test": "grunt test"
},
"keywords": [
"grunt",
"gruntplugin",
"npm",
"outdated"
],
"files": [
"docs",
"tasks",
"lib"
],
"bugs": {
"url": "https://github.com/db-developer/grunt-check-outdated/issues"
},
"homepage": "https://www.slashlib.org/?page_id=429",
"devDependencies": {
"@babel/core": "^7.29.0",
"@rollup/plugin-commonjs": "^29.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"babel-loader": "^10.1.1",
"expect.js": "^0.3.1",
"grunt": "^1.6.1",
"grunt-call-npm": "^1.0.0",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-eslint": "^26.0.0",
"grunt-jsdoc2md": "^1.3.0",
"grunt-jsonfile": "^1.3.0",
"grunt-mkdir": "^1.1.0",
"grunt-nyc-mocha": "^1.3.0",
"grunt-rollup": "^12.0.0",
"load-grunt-config": "^4.0.1",
"load-grunt-tasks": "^5.1.0",
"source-map-support": "^0.5.21"
},
"dependencies": {
"check-outdated": "^2.14.0"
}
}