-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.96 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.96 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
78
79
80
81
{
"name": "npm-reinstall",
"version": "3.1.0",
"description": "Just reinstall npm package.",
"bin": {
"reinstall": "./dist/bin.js",
"rin": "./dist/bin.js"
},
"preferGlobal": true,
"files": [
"dist"
],
"engines": {
"node": ">=8",
"npm": ">=3"
},
"scripts": {
"prepublishOnly": "npm run build",
"prebuild": "rimraf dist/*",
"build": "tsc",
"pretest": "npm run build && ts-node ./script/prepare-test.ts",
"test": "jest --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gluons/npm-reinstall.git"
},
"keywords": [
"install",
"reinstall",
"package",
"module"
],
"author": "Saran Tanpituckpong <sarunta@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gluons/npm-reinstall/issues"
},
"homepage": "https://github.com/gluons/npm-reinstall",
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-typescript": "^7.3.3",
"@gluons/prettier-config": "^2.0.0",
"@types/chalk-animation": "^1.6.0",
"@types/execa": "^0.9.0",
"@types/jest": "^24.0.12",
"@types/node": "6",
"@types/signale": "^1.2.1",
"@types/update-notifier": "^2.5.0",
"@types/yargs": "^13.0.0",
"ansi-escapes": "^4.1.0",
"babel-jest": "^24.8.0",
"chalk-animation": "^1.6.0",
"cross-env": "^5.2.0",
"jest": "^24.8.0",
"prettier": "^1.17.0",
"rimraf": "^2.6.3",
"signale": "^1.4.0",
"ts-node": "^8.1.0",
"tsconfig-gluons": "^1.0.1",
"tslint": "^5.16.0",
"tslint-config-gluons": "^2.1.0",
"typescript": "^3.4.5"
},
"dependencies": {
"@danielbayerlein/caniuse-yarn": "^1.1.0",
"caniuse-pnpm": "^1.1.0",
"chalk": "^2.4.2",
"del": "^4.1.1",
"execa": "^1.0.0",
"has-pnpm": "^1.1.1",
"has-yarn": "^2.1.0",
"ora": "^3.4.0",
"update-notifier": "^2.5.0",
"yargs": "^13.2.2"
}
}