forked from webpack-contrib/stylus-loader
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
59 lines (59 loc) · 1.48 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
{
"name": "stylus-relative-loader",
"version": "4.0.0",
"description": "Stylus loader for webpack, with fixed imports",
"main": "index.js",
"files": [
"index.js",
"lib/"
],
"scripts": {
"check": "npm run lint && npm test",
"lint": "eslint *.js lib",
"test": "testem ci",
"test-dev": "testem -l firefox",
"test-one": "testem ci -l firefox",
"test-build": "webpack --config test/webpack.config.js --output-path test/tmp --output-file bundle.js"
},
"author": "Brian Beck <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:walmartlabs/stylus-relative-loader.git"
},
"bugs": {
"url": "https://github.com/walmartlabs/stylus-relative-loader/issues"
},
"dependencies": {
"debug": "^2.2.0",
"es6-promise": "^3.2.1",
"loader-utils": "^0.2.9"
},
"devDependencies": {
"benchmark": "^2.1.1",
"css-loader": "^0.23.1",
"eslint": "^1.10.3",
"eslint-config-defaults": "^9.0.0",
"eslint-plugin-filenames": "^0.2.0",
"memory-fs": "^0.3.0",
"mocha": "^2.5.3",
"mocha-loader": "^0.7.1",
"nib": "^1.1.0",
"node-libs-browser": "^1.0.0",
"raw-loader": "^0.5.1",
"should": "^10.0.0",
"style-loader": "^0.13.1",
"stylus": "^0.54.5",
"testem": "^1.10.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
},
"peerDependencies": {
"stylus": "^0.54.5"
},
"keywords": [
"webpack",
"loader",
"stylus"
]
}