-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.5 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
{
"name": "ngt-cli",
"version": "0.0.0-development",
"description": "CLI to leverage ngt-scripts for easy projects setup ",
"main": "dist/bin/ngt-cli.js",
"bin": "dist/bin/ngt-cli.js",
"scripts": {
"build": "babel lib -d dist -s --delete-dir-on-start",
"watch": "babel lib -d dist -s --delete-dir-on-start -w",
"test": "echo \"Error: no test specified\" && exit 1",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"files": [
"dist",
"templates"
],
"engines": {
"node": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Nargonath/ngt-cli.git"
},
"keywords": [
"cli",
"nodejs",
"development",
"ngt-scripts",
"async-await",
"project-template"
],
"author": "Nargonath <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Nargonath/ngt-cli/issues"
},
"homepage": "https://github.com/Nargonath/ngt-cli#readme",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"chalk": "^2.4.2",
"cross-spawn": "6.0.5",
"fs-extra": "^8.0.1",
"meow": "^5.0.0",
"update-notifier": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel-plugin-module-resolver": "^3.2.0",
"babel-plugin-transform-class-properties": "6.24.1",
"ngt-scripts": "^1.4.0",
"semantic-release": "^15.13.12"
}
}