forked from joscha/less-vars-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.14 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
{
"name": "less-vars-loader",
"description": "webpack loader to load variables from less files",
"main": "index.js",
"scripts": {
"pretest": "webpack --config ./test/sample/webpack.config.js",
"test": "mocha",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/joscha/less-vars-loader.git"
},
"author": "Joscha Feth <[email protected]>",
"engines": {
"node": ">=5"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/joscha/less-vars-loader/issues"
},
"homepage": "https://github.com/joscha/less-vars-loader#readme",
"dependencies": {
"camelcase": "^3.0.0",
"less-vars-to-js": "^1.1.2",
"loader-utils": "^0.2.16",
"object.entries": "^1.0.3"
},
"keywords": [
"webpack",
"loader",
"less",
"vars"
],
"devDependencies": {
"chai": "^3.5.0",
"cz-conventional-changelog": "^1.2.0",
"mocha": "^3.0.2",
"semantic-release": "^4.3.5",
"webpack": "^1.9.10"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}