-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.29 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "sass-themes-loader",
"version": "0.1.16",
"description": "Sass themes loader module for webpack",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf dist",
"build": "babel ./src -d ./dist && webpack --config ./demo/webpack.config.js --env.prod=true",
"lint": "eslint --ext=.js ./src",
"post": "rimraf dist && npm build && git push",
"demo": "webpack-dev-server --hot --config ./demo/webpack.config.js --inline"
},
"repository": {
"type": "git",
"url": "https://github.com/nordnet/sass-variable-loader"
},
"keywords": [
"sass",
"theme",
"loader"
],
"author": "nothinggift <717734797@qq.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/nordnet/sass-variable-loader/issues"
},
"homepage": "https://github.com/nordnet/sass-variable-loader/#readme",
"files": [
"dist",
"README.md"
],
"peerDependencies": {
"node-sass": "^4.0.0"
},
"dependencies": {
"loader-utils": "^1.1.0",
"mk-sass-variables-loader": "^0.0.11"
},
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.4.0",
"babel-core": "^6.4.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-runtime": "^6.1.2",
"babel-preset-es2015": "^6.3.13",
"babel-runtime": "^5.8.0",
"chai": "^3.4.1",
"connect-history-api-fallback": "^1.3.0",
"css-loader": "^0.26.1",
"eslint": "^3.19.0",
"eslint-config-standard": "^6.2.1",
"eslint-friendly-formatter": "^2.0.7",
"eslint-loader": "^1.6.1",
"eslint-plugin-html": "^2.0.0",
"eslint-plugin-promise": "^3.4.1",
"eslint-plugin-standard": "^2.0.1",
"eslint-plugin-vue": "^2.0.1",
"express": "^4.14.1",
"file-loader": "^0.10.0",
"highlight.js": "^9.9.0",
"html-webpack-plugin": "^2.28.0",
"husky": "^0.10.2",
"loader-runner": "^2.3.0",
"memory-fs": "^0.4.1",
"mocha": "^2.3.4",
"node-sass": "^4.5.3",
"prismjs": "^1.6.0",
"rimraf": "^2.5.0",
"sass-loader": "^5.0.1",
"style-loader": "^0.13.1",
"vue-color": "^2.0.5",
"vue-loader": "^10.3.0",
"vue-material": "^0.7.1",
"vue-template-compiler": "^2.1.10",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.10.0",
"webpack-dev-server": "^2.3.0",
"webpack-hot-middleware": "^2.16.1"
}
}