-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@nevware21/ts-build-tools",
"description": "A mono-repo for @nevware21 build-tools.",
"version": "0.1.4",
"homepage": "https://github.com/nevware21/ts-build-tools",
"sideEffects": false,
"license": "MIT",
"author": {
"name": "NevWare21 Solutions LLC",
"email": "[email protected]"
},
"keywords": [
"typescript",
"javascript",
"build-tools",
"utilities",
"tools",
"pre-processing",
"post-processing",
"typedef",
"npm-publish",
"npm",
"publish-npm",
"publishing",
"coverage"
],
"scripts": {
"postinstall": "node common/scripts/install-run-rush.js update --full",
"build": "rush build",
"rebuild": "rush rebuild",
"test": "rush test",
"lint": "grunt all-lint",
"codecov": "rush codecov",
"clean": "git clean -xdf && npm install",
"cleanBuild": "npm run clean && npm run rebuild",
"rush-update": "rush update --recheck --purge --full",
"test:node": "cd lib && npm run test:node",
"prep-release": "npm run cleanBuild && npm run npm-pack",
"npm-pack": "rush npm-pack",
"npm-publish": "node ./lib/publish-npm/dist/bin/publish-npm.js"
},
"repository": {
"type": "git",
"url": "https://github.com/nevware21/ts-build-tools.git"
},
"bugs": {
"url": "https://github.com/nevware21/ts-build-tools/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/nevware21/ts-build-tools/blob/main/LICENSE"
}
],
"engines": {
"node": ">= 0.8.0"
},
"dependencies": {
"@nevware21/ts-utils": ">= 0.11.5 < 2.x"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@microsoft/rush": "5.149.0",
"@nevware21/grunt-eslint-ts": "^0.5.1",
"@nevware21/grunt-ts-plugin": "^0.5.1",
"@nevware21/tripwire": "^0.1.1",
"@types/eslint": "^9.6.1",
"@types/estree": "^1.0.0",
"@types/jquery": "^3.5.14",
"@types/mocha": "^10.0.1",
"@types/node": "^22.10.2",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^7.14.1",
"@typescript-eslint/parser": "^7.14.1",
"eslint": "^8.56.0",
"eslint-formatter-codeframe": "^7.32.1",
"eslint-plugin-security": "^1.7.1",
"grunt": "^1.6.1",
"grunt-cli": "^1.5.0",
"nyc": "^17.0.0",
"typedoc": "^0.26.2",
"typescript": "^4.9.5"
}
}