-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.59 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": "gulp-ignite-sitecore",
"description": "A build and deployment set of gulp tasks to ease through the development of Sitecore projects.",
"version": "1.3.0",
"main": "index.js",
"scripts": {
"test": "mocha --compilers js:babel-core/register",
"watch": "mocha --compilers js:babel-core/register -w",
"build": "babel src -d ./",
"prepublish": "npm test && npm run build",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jscarmona/gulp-ignite-sitecore.git"
},
"keywords": [
"gulp",
"starter",
"tasks",
"sitecore"
],
"author": "Javier Carmona",
"license": "MIT",
"bugs": {
"url": "https://github.com/jscarmona/gulp-ignite-sitecore/issues"
},
"homepage": "https://github.com/jscarmona/gulp-ignite-sitecore#readme",
"dependencies": {
"event-stream": "3.3.2",
"gulp": "3.9.1",
"gulp-ignite": "1.3.0",
"gulp-msbuild": "0.3.2",
"gulp-newer": "1.1.0",
"gulp-nuget-restore": "0.4.0",
"yargs": "4.2.0"
},
"devDependencies": {
"babel-cli": "6.6.4",
"babel-core": "6.6.5",
"babel-preset-es2015": "6.6.0",
"chai": "3.5.0",
"commitizen": "2.6.1",
"cz-conventional-changelog": "1.1.5",
"eslint": "2.10.1",
"eslint-config-airbnb-base": "3.0.1",
"eslint-plugin-import": "1.8.0",
"ghooks": "1.0.3",
"mocha": "2.4.5"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-push": "npm test",
"post-merge": "npm install",
"post-rewrite": "npm install"
}
}
}