-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.21 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
{
"name": "gulp-workflow",
"version": "1.1.5",
"description": "A simple, opinionated tool to managing your Gulp workflow",
"main": "index.compiled.js",
"repository": {
"type": "git",
"url": "https://github.com/hollandben/gulp-workflow.git"
},
"bugs": {
"url": "https://github.com/hollandben/gulp-workflow/issues"
},
"scripts": {
"build": "./node_modules/.bin/babel index.js --out-file index.js",
"lint": "./node_modules/.bin/eslint index.js",
"test": "./node_modules/.bin/jest"
},
"author": "Ben Holland <hi@benholland.me> (https://benholland.me)",
"license": "MIT",
"dependencies": {
"chalk": "^1.1.3",
"gulp": "^3.9.1",
"gulp-help": "^1.6.1",
"gulp-load-plugins": "^1.2.2",
"lodash.assign": "^4.0.9",
"run-sequence": "^1.1.5",
"yargs": "^4.6.0"
},
"devDependencies": {
"babel-cli": "^6.7.5",
"babel-jest": "^12.1.0",
"babel-preset-es2015": "6.6.0",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^7.0.0",
"jasmine": "^2.4.1",
"jest-cli": "^12.1.1"
},
"keywords": [
"gulp",
"plugin",
"workflow",
"tasks",
"management"
],
"jest": {
"unmockedModulePathPatterns": [
"node_modules"
]
}
}