forked from dsc8x/sass-vars-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.68 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": "@epegzz/sass-vars-loader",
"version": "3.4.0",
"author": "Daniel Schäfer <[email protected]>",
"description": "A SASS vars loader for Webpack. Load global SASS vars from JS/JSON files or from Webpack config.",
"keywords": [
"scss",
"sass",
"js",
"json",
"vars",
"variables",
"webpack",
"loader"
],
"license": "MIT",
"engines": {
"node": ">=4"
},
"repository": {
"type": "git",
"url": "https://github.com/epegzz/sass-vars-loader"
},
"engineStrict": true,
"main": "dist/sassVarsLoader.js",
"scripts": {
"test": "NODE_ENV=testing jest --verbose",
"precommit": "lint-staged",
"watch-test": "NODE_ENV=testing jest --watch",
"coverage": "NODE_ENV=testing jest && codecov",
"build": "NODE_ENV=production babel src -d dist",
"lint": "NODE_ENV=testing eslint src",
"lint-check": "NODE_ENV=testing eslint --print-config .eslintrc.js | eslint-config-prettier-check"
},
"lint-staged": {
"*.js": ["eslint --fix", "git add"]
},
"dependencies": {
"loader-utils": "^1.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-jest": "^22.4.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"codecov": "^3.0.1",
"eslint": "^4.11.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-es2015": "^1.1.0",
"eslint-config-prettier": "^2.7.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.15.1",
"eslint-plugin-prettier": "^2.3.1",
"husky": "^0.14.3",
"jest": "^22.4.3",
"lint-staged": "^7.2.0",
"prettier": "^1.12.1",
"prettier-eslint": "^8.8.1",
"globby": "^8.0.1"
}
}