-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.46 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
{
"name": "mama.js",
"version": "1.0.0",
"description": "Cool CLI for initialize new cool library",
"scripts": {
"build": "rollup -c",
"release": "standard-version --release-as",
"prepublish": "npm run build"
},
"bin": {
"mama": "dist/index.js"
},
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/wongnai/mama.js.git"
},
"keywords": [
"mama",
"mama.js",
"javascript",
"bundle",
"library"
],
"author": "wongnai",
"license": "MIT",
"bugs": {
"url": "https://github.com/wongnai/mama.js/issues"
},
"homepage": "https://github.com/wongnai/mama.js#readme",
"devDependencies": {
"@types/cli-progress": "^1.8.1",
"@types/execa": "^2.0.0",
"@types/figlet": "^1.2.0",
"@types/jest": "^24.0.18",
"@types/lodash": "^4.14.138",
"@types/make-dir": "^2.1.0",
"@types/ora": "^3.2.0",
"husky": "^3.0.5",
"jest": "^24.9.0",
"lint-staged": "^9.2.5",
"prettier": "^1.18.2",
"rollup": "^1.21.2",
"rollup-plugin-includepaths": "^0.2.3",
"rollup-plugin-typescript2": "^0.24.2",
"standard-version": "^7.0.0",
"tslint": "^5.20.0",
"typescript": "^3.6.3",
"typescript-tslint-plugin": "^0.5.4"
},
"dependencies": {
"chalk": "^2.4.2",
"cli-progress": "^3.1.0",
"commander": "^3.0.1",
"execa": "^2.0.4",
"figlet": "^1.2.4",
"lodash": "^4.17.15",
"make-dir": "^3.0.0",
"ora": "^3.4.0"
}
}