-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.11 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.11 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
{
"name": "mpkg",
"version": "1.0.0",
"description": "A temporary dependency management solution for [m-language](https://github.com/m-language/m-language), allowing package installation, dependency resolution, package publishing, and package specification.",
"main": "build/js/mpkg.js",
"types": "build/js/mpkg.d.ts",
"scripts": {
"build": "tsc",
"run": "node build/js/mpkg.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tkaden4/mpkg.git"
},
"author": "Kaden Thomas",
"license": "MIT",
"bugs": {
"url": "https://github.com/tkaden4/mpkg/issues"
},
"bin": {
"mpkg": "./build/js/mpkg.js"
},
"homepage": "https://github.com/tkaden4/mpkg#readme",
"dependencies": {
"chalk": "^2.4.2",
"decompress-targz": "^4.1.1",
"execa": "^1.0.0",
"meow": "^5.0.0",
"rimraf": "^2.6.3",
"shelljs": "^0.8.3"
},
"devDependencies": {
"@types/decompress": "^4.2.3",
"@types/execa": "^0.9.0",
"@types/meow": "^5.0.0",
"@types/node": "^12.0.8",
"@types/rimraf": "^2.0.2",
"@types/shelljs": "^0.8.5",
"typescript": "^3.5.2"
}
}