-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.04 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
{
"name": "offline-npm-installer",
"version": "0.0.0",
"description": "Scripts and GUI for creating a prepopulated Verdaccio-compatible npm cache.",
"main": "src/main.js",
"typings": "src/main.d.ts",
"scripts": {
"lint": "tslint --config tslint.json --format stylish --project tsconfig.json",
"prettier:base": "prettier --parser typescript",
"prettier:check": "npm run prettier:base -- --list-different \"src/**/*.{ts,tsx}\"",
"prettier:write": "npm run prettier:base -- --write \"src/**/*.{ts,tsx}\"",
"start": "electron .",
"tsc": "tsc",
"verify": "npm run tsc && npm run lint",
"watch": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshuakgoldberg/offline-npm-installer.git"
},
"keywords": [
"npm",
"verdaccio",
"offline",
"unloop",
"cache",
"offline-npm-installer",
"yippee",
"hooray"
],
"author": "Josh Goldberg <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/joshuakgoldberg/offline-npm-installer/issues"
},
"homepage": "https://github.com/joshuakgoldberg/offline-npm-installer#readme",
"devDependencies": {
"@types/archiver": "^2.1.2",
"@types/fs-extra": "^5.0.4",
"@types/node": "^10.5.3",
"@types/react": "^16.4.7",
"@types/react-dom": "^16.0.6",
"prettier": "1.13.7",
"tslint": "5.10.0",
"tslint-config-prettier": "^1.14.0",
"tsutils": "^2.29.0",
"typescript": "^2.9.2"
},
"dependencies": {
"@types/commander": "^2.12.2",
"archiver": "^2.1.1",
"bootstrap": "^4.1.3",
"commander": "^2.16.0",
"electron": "^2.0.5",
"fs-extra": "^7.0.0",
"husky": "^1.0.0-rc.13",
"jquery": "^3.3.1",
"lint-staged": "^7.2.0",
"popper.js": "^1.14.3",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"tree-kill": "^1.2.0",
"verdaccio": "^3.3.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{css,js,json,md,ts,tsx}": [
"prettier --write",
"git add"
]
}
}