forked from i-fulfilment/gulp-sass-glob
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.72 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
{
"name": "gulp-sass-glob",
"version": "1.1.0",
"description": "Gulp task to use glob imports in your sass/scss files.",
"repository": {
"type": "git",
"url": "git+https://[email protected]/mikevercoelen/gulp-sass-glob.git"
},
"keywords": [
"gulp",
"sass",
"glob",
"gulpplugin"
],
"author": "Mike Vercoelen <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikevercoelen/gulp-sass-glob/issues"
},
"homepage": "https://github.com/mikevercoelen/gulp-sass-glob#readme",
"main": "./dist/index.js",
"scripts": {
"compile": "babel -d dist/ src/",
"prepublish": "npm run compile",
"start": "npm run compile && node dist/index.js",
"test": "mocha --require babel-core/register",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"prepush": "npm run lint-fix && npm run test",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"glob": "^7.1.4",
"minimatch": "^3.0.4",
"slash": "^3.0.0",
"through2": "^3.0.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.2",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"eslint": "^6.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"expect.js": "^0.3.1",
"husky": "^3.0.0",
"lint-staged": "^9.0.1",
"mocha": "^6.1.4",
"vinyl-fs": "^3.0.3"
}
}