-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 919 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
42
43
{
"name": "packageton",
"version": "2.1.0",
"description": "A skeleton structure for package creation.",
"main": "src/cli.js",
"scripts": {
"test": "mocha",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/roliod/packageton.git"
},
"keywords": [
"packages",
"modules"
],
"author": "Roland Oduberu",
"license": "ISC",
"bugs": {
"url": "https://github.com/roliod/packageton/issues"
},
"homepage": "https://github.com/roliod/packageton#readme",
"bin": {
"packageton": "src/cli.js"
},
"dependencies": {
"arg": "^4.1.1",
"chai": "^4.2.0",
"chalk": "^2.4.2",
"cmd": "^0.1.0",
"commander": "^3.0.0",
"esm": "^3.2.25",
"inquirer": "^8.1.3",
"log-symbols": "^3.0.0",
"ncp": "^2.0.0",
"shelljs": "^0.8.4"
},
"devDependencies": {
"eslint": "^7.32.0",
"mocha": "^9.1.1"
}
}