-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.26 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
{
"name": "npmy",
"version": "1.3.0",
"description": "`npm/npx` on steroids.",
"author": "RubaXa <[email protected]>",
"repository": "[email protected]:artifact-project/npmy.git",
"license": "MIT",
"main": "index.js",
"bin": {
"npmy": "bin/npmy.js"
},
"scripts": {
"test": "jest --coverage",
"cli": "ts-node index.ts",
"start": "ts-node index.ts",
"ts-build": "tsc",
"prepublishOnly": "npm run ts-build"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"jest": "^26.6.3",
"ts-jest": "^26.5.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "\\.tests\\.ts$",
"setupTestFrameworkScriptFile": "<rootDir>/__jest__/extensions.ts",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"dependencies": {
"@types/minimatch": "^3.0.3",
"@types/node": "^14.14.27",
"chalk": "^4.1.0",
"cli-spinner": "^0.2.10",
"debounce": "^1.2.0",
"glob": "^7.1.4",
"latest-version": "^5.1.0",
"mem": "^8.0.0",
"minimatch": "^3.0.4",
"minimist": "^1.2.0",
"node-watch": "^0.7.1",
"rimraf": "^3.0.2",
"semver": "^7.3.4"
}
}