This repository has been archived by the owner on Jan 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
59 lines (59 loc) · 1.48 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
{
"name": "wexond-package-manager",
"version": "1.4.5",
"description": "A package manager for Wexond",
"main": "build/index",
"types": "build/index.d.ts",
"scripts": {
"watch": "tsc --watch",
"build": "tsc",
"lint": "eslint --ext .ts --ext .js src/",
"lint-fix": "prettier-eslint --write src/**/*.ts",
"test": "npm run build",
"wpm": "node ./bin/index.js"
},
"bin": {
"wpm": "./bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wexond/wexond-package-manager.git"
},
"keywords": [
"package-manager",
"nodejs"
],
"author": "wexond",
"license": "MIT",
"bugs": {
"url": "https://github.com/wexond/wexond-package-manager/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/wexond/wexond-package-manager#readme",
"devDependencies": {
"eslint": "6.1.0",
"eslint-config-airbnb": "17.1.1",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.14.3",
"prettier": "1.18.2",
"prettier-eslint": "9.0.0",
"prettier-eslint-cli": "5.0.0",
"typescript-eslint-parser": "22.0.0",
"typescript": "3.5.3"
},
"dependencies": {
"chalk": "2.4.2",
"commander": "2.20.0",
"@types/decompress": "4.2.3",
"@types/ncp": "2.0.1",
"@types/node": "12.6.8",
"@types/rimraf": "2.0.2",
"decompress": "4.2.0",
"easy-vm": "1.2.2",
"rimraf": "2.6.3",
"ncp": "2.0.0"
}
}