-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
101 lines (101 loc) · 2.81 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@pruner/cli",
"version": "2.2.0",
"description": "The Pruner CLI that reduces the amount of time spent running tests.",
"main": "./dist/exports.js",
"type": "commonjs",
"types": "./dist/src/exports.d.ts",
"directories": {
"test": "tests"
},
"bin": {
"pruner": "bin/pruner"
},
"files": [
"dist"
],
"scripts": {
"pruner:install": "npm run build && npm unlink @pruner/cli && npm link --force",
"pruner:run": "npm run build && node ./",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir dist --extensions \".ts,.tsx\" --source-maps inline",
"test": "jest --verbose false",
"test:dotnet": "jest --verbose false -t \"dotnet\"",
"test:watch": "jest --watch --verbose false",
"test:watch:git": "jest --watch --verbose false -t \"git\"",
"test:watch:dotnet": "jest --watch --verbose false -t \"dotnet\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/pruner/cli.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/pruner/cli/issues"
},
"engines": {
"node": ">=10"
},
"engineStrict": true,
"homepage": "https://github.com/pruner/cli#readme",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/node": "^7.12.6",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.7",
"@types/chokidar": "^2.1.3",
"@types/fs-extra": "^9.0.3",
"@types/git-diff-parser": "^1.0.0",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.164",
"@types/minimatch": "^3.0.3",
"@types/node": "^14.14.6",
"@types/prompts": "^2.0.9",
"@types/rimraf": "^3.0.0",
"@types/uuid": "^8.3.0",
"@types/xml-escape": "^1.1.0",
"@types/yargs": "^15.0.9",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"babel-jest": "^26.6.1",
"eslint": "^7.13.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"fs-extra": "^9.0.1",
"jest": "^26.6.1",
"ts-jest": "^26.4.3",
"ts-node": "^9.0.0",
"typescript": "^4.1.3"
},
"dependencies": {
"@fluffy-spoon/name-of": "^1.4.0",
"chalk": "^4.1.0",
"chokidar": "^3.4.3",
"download": "^8.0.0",
"execa": "^4.1.0",
"extract-zip": "^2.0.1",
"fast-xml-parser": "^3.17.6",
"git-diff-parser": "^1.0.0",
"glob": "^7.1.6",
"html-entities": "^2.3.3",
"istanbul-lib-coverage": "^3.0.0",
"istanbul-lib-source-maps": "^4.0.0",
"lodash": "^4.17.20",
"minimatch": "^5.0.1",
"mocha": "^8.2.1",
"ora": "^5.3.0",
"prompts": "^2.4.0",
"regex-escape": "^3.4.10",
"rimraf": "^3.0.2",
"uuid": "^8.3.1",
"xml-escape": "^1.1.0",
"yargs": "^16.1.1"
}
}