forked from tompascall/js-to-styles-var-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.11 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
{
"name": "js-to-styles-var-loader",
"version": "1.1.0",
"description": "Webpack loader for sharing data amongst (sass || less) && javascript modules",
"main": "index.js",
"scripts": {
"test": "jest --config jest.config",
"test:coverage": "jest --config jest.config --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test:watch": "jest --watch --config jest.config"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tompascall/js-to-styles-var-loader.git"
},
"keywords": [
"webpack",
"loader",
"sass",
"less",
"variables",
"DRY"
],
"author": "tompascall",
"license": "ISC",
"bugs": {
"url": "https://github.com/tompascall/js-to-styles-var-loader/issues"
},
"homepage": "https://github.com/tompascall/js-to-styles-var-loader#readme",
"devDependencies": {
"babel-jest": "^19.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"coveralls": "^2.12.0",
"jest": "^19.0.2"
},
"dependencies": {
"decache": "^4.1.0",
"squba": "^0.1.4"
}
}