-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
86 lines (86 loc) · 2.32 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "mole-cli",
"version": "0.0.6",
"description": "cli for creating a molecule project",
"main": "dist/index.js",
"bin": {
"mole": "bin/mole.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/searchfe/mole-cli.git"
},
"author": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/searchfe/mole-cli/issues"
},
"homepage": "https://github.com/searchfe/mole-cli#readme",
"files": [
"dist",
"config",
"bin",
"*.json",
"*.md"
],
"dependencies": {
"@types/eslint": "^4.16.6",
"@types/gulp": "^4.0.6",
"@types/handlebars": "^4.1.0",
"@types/inquirer": "^6.0.3",
"@types/metalsmith": "^2.3.0",
"@types/node": "^12.0.2",
"@types/ora": "^3.2.0",
"@types/request-promise": "^4.1.44",
"@types/semver": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"chalk": "^2.4.2",
"commander": "^2.20.0",
"del": "^4.1.1",
"download-git-repo": "^1.1.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"glob": "^7.1.4",
"gulp": "^4.0.2",
"gulp-amd-wrap": "0.0.4",
"gulp-deploy-http-push": "0.0.3",
"gulp-less": "^4.0.1",
"gulp-parse-to-html": "^1.0.1",
"gulp-ts2php": "^1.0.1",
"gulp-typescript": "^5.0.1",
"handlebars": "^4.1.2",
"inquirer": "^6.3.1",
"metalsmith": "^2.3.0",
"mole-gulp": "0.0.3",
"ora": "^3.4.0",
"request-promise": "^4.2.4",
"semver": "^6.1.1"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/commit-analyzer": "^6.1.0",
"@semantic-release/git": "^7.0.8",
"@semantic-release/npm": "^5.1.7",
"@semantic-release/release-notes-generator": "^7.1.4",
"semantic-release": "^15.13.12"
},
"release": {
"branch": "master",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
}
}