-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 927 Bytes
/
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
{
"name": "mppm",
"version": "0.0.3",
"description": "Multiple packages project manager",
"keywords": [
"Multiple packages",
"packages manager",
"npm packages"
],
"files": [
"dist/*"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -fr dist",
"dist": "tsc",
"build": "npm run clean && npm run dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/helongbin/mppm.git"
},
"author": "https://github.com/helongbin",
"license": "MIT",
"bugs": {
"url": "https://github.com/helongbin/mppm/issues"
},
"homepage": "https://github.com/helongbin/mppm#readme",
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/node": "^11.13.4",
"glob": "^7.1.3",
"ts-node": "^8.0.3",
"tslint": "^5.15.0",
"typescript": "^3.4.3"
},
"bin": "dist/cli.js",
"engines": {
"node": ">=8"
}
}