-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (77 loc) · 2.58 KB
/
package.json
File metadata and controls
80 lines (77 loc) · 2.58 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "grunt-plugins",
"description": "Plugin for GruntJS",
"version": "0.5.2",
"homepage": "https://github.com/nevware21/grunt-plugins",
"keywords": [
"grunt",
"gruntplugin",
"grunt-plugin",
"typescript",
"javascript",
"task",
"compiler",
"build",
"grunt-ts",
"grunt-task"
],
"author": {
"name": "NevWare21 Solutions LLC",
"email": "github@nevware21.com"
},
"scripts": {
"postinstall": "node common/scripts/install-run-rush.js update --full",
"build": "node common/scripts/install-run-rush.js rebuild --verbose",
"rebuild": "node common/scripts/install-run-rush.js rebuild --verbose",
"test": "node common/scripts/install-run-rush.js test --verbose",
"lint": "node common/scripts/install-run-rush.js dolint --verbose",
"check": "node common/scripts/install-run-rush.js check",
"rupdate": "rush update --recheck --full",
"clean": "git clean -xdf && npm install",
"cleanBuild": "npm run clean && npm run build",
"prep-release": "npm run cleanBuild && npm run npm-pack",
"npm-pack": "cd ts-plugin && npm pack && cd ../eslint-ts-plugin && npm pack"
},
"repository": {
"type": "git",
"url": "https://github.com/nevware21/grunt-plugins.git"
},
"bugs": {
"url": "https://github.com/nevware21/grunt-plugins/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/nevware21/grunt-plugins/blob/master/LICENSE-MIT"
}
],
"engines": {
"node": ">= 0.8.0"
},
"dependencies": {
"@nevware21/ts-utils": ">= 0.12.6 < 2.x",
"@nevware21/ts-async": ">= 0.5.5 < 2.x",
"eslint-formatter-codeframe": "^7.32.1"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@microsoft/rush": "5.129.6",
"@nevware21/grunt-eslint-ts": "^0.5.0",
"@nevware21/grunt-ts-plugin": "^0.5.0",
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@types/eslint": "~8.56.12",
"@types/estree": "^1.0.0",
"@types/node": "^25.2.2",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"eslint": "^8.56.10",
"eslint-plugin-security": "^1.7.1",
"grunt": "^1.6.1",
"grunt-cli": "^1.4.3",
"typescript": "5.2.2",
"nyc": "^18.0.0",
"codecov": "^3.8.3",
"rollup": "^4.6.0"
}
}