-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.22 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.22 KB
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
{
"name": "varss",
"version": "0.0.5",
"description": "A scss library for working with css variables",
"main": "varss.scss",
"repository": {
"type": "git",
"url": "https://github.com/benignware/varss.git"
},
"bugs": {
"url": "https://github.com/benignware/varss/issues"
},
"scripts": {
"clean": "rm -rf tmp",
"test": "mocha test/test.js --reporter spec",
"build": "npm run clean && webpack --config ./test/fixtures/webpack.config.js -o ./tmp/main.js",
"start": "webpack-dev-server --mode development --config ./test/fixtures/webpack.config.js -o ./tmp/main.js"
},
"keywords": [
"scss",
"sass",
"css",
"css-variables",
"css-custom-properties"
],
"author": "Rafael Nowrotek <mail@benignware.com> (http://benignware.com)",
"license": "MIT",
"devDependencies": {
"css-loader": "^2.1.0",
"extract-loader": "^3.1.0",
"file-loader": "^3.0.1",
"gh-pages": "^2.0.1",
"html-loader": "^0.5.5",
"mocha": "^5.2.0",
"node-sass": "^4.11.0",
"postcss": "^7.0.11",
"postcss-prettify": "^0.3.4",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-dev-server": "^3.1.14"
}
}