-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.1 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": "punchcard-runner",
"description": "A set of Gulp tasks to ease development of Node projects",
"version": "0.0.0",
"main": "index.js",
"scripts": {
"start": "node index.js",
"pretest": "npm run lint",
"test": "npm run nyc",
"lint": "eslint index.js lib tasks && eslint -c ./.eslintrc-ava.yml tests",
"nyc": "nyc --all npm run ava",
"ava": "ava | tap-diff",
"ava:watch": "ava --watch | tap-diff",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"reparo": "reparo -b master"
},
"repository": {
"type": "git",
"url": "https://github.com/punchcard-cms/runner.git"
},
"keywords": [
"gulp",
"punchcard-cms"
],
"author": "Sam Richard <snugug@us.ibm.com>",
"license": "Apache-2.0",
"dependencies": {
"browser-sync": "^2.18.8",
"del": "^2.2",
"eslint-config-punchcard": "^1.0",
"eyeglass": "^1.1",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^4.0.0",
"gulp-eslint": "^3.0",
"gulp-if": "^2.0",
"gulp-imagemin": "^3.0",
"gulp-nodemon": "^2.2.1",
"gulp-sass": "^3.1.0",
"gulp-sass-lint": "^1.2",
"gulp-sourcemaps": "^2.6.0",
"gulp-task-listing": "^1.0",
"merge": "^1.2.0",
"minimatch": "^3.0.4",
"run-sequence": "^1.2"
},
"devDependencies": {
"ava": "^0.19.1",
"coveralls": "^2.11",
"eslint": "^3.19.0",
"ghooks": "^2.0.0",
"nyc": "^10.3.2",
"punchcard-commit-msg": "^1.0",
"punchcard-semantic-release": "^2.0",
"reparo": "^1.1.1-0",
"semantic-release": "^6.3.6",
"tap-diff": "^0.1.1"
},
"config": {
"ghooks": {
"commit-msg": "punchcard-commit-msg"
}
},
"release": {
"analyzeCommits": "punchcard-semantic-release/analyze",
"generateNotes": "punchcard-semantic-release/notes"
},
"nyc": {
"exclude": [
"tests/**/*",
"tasks/**/*",
"Gulpfile.js",
"index.js"
]
},
"ava": {
"files": [
"tests/**/*.js"
],
"failFast": true,
"tap": true
},
"engines": {
"node": "^6"
}
}