-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.01 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
{
"name": "lastcall-gulp-drupal-tasks",
"version": "2.0.0",
"description": "Gulp Drupal Tasks",
"repository": "LastCallMedia/gulp-drupal-tasks",
"main": "index.js",
"files": [
"index.js",
"lib/*"
],
"scripts": {
"test:lint": "eslint .",
"test:unit": "mocha",
"test:coverage": "npx nyc mocha",
"test": "npm-run-all test:lint test:unit"
},
"author": "Rob Bayliss <rob@lastcallmedia.com>",
"license": "ISC",
"devDependencies": {
"chai": "^3.5.0",
"chai-files": "^1.4.0",
"eslint": "^6.8.0",
"gulp-imagemin": "^6.2.0",
"mocha": "^6.2.3",
"mocha-junit-reporter": "^1.23.3",
"npm-run-all": "^4.1.5",
"rimraf": "^2.5.4",
"sinon": "^1.17.7"
},
"dependencies": {
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-concat": "^2.6.1",
"gulp-csso": "^3.0.1",
"gulp-minify": "^3.1.0",
"gulp-sass": "^5.0",
"gulp-sourcemaps": "^2.4.0",
"node-sass-tilde-importer": "0.0.4",
"sass": "^1.56.1",
"through2": "^2.0.3"
}
}