-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
85 lines (85 loc) · 1.92 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
82
83
84
85
{
"name": "fast-sass-loader",
"description": "fast sass loader for Webpack",
"version": "2.0.1",
"main": "lib/index.js",
"scripts": {
"lint": "standard --fix && npm-ensure -t deps",
"test": "npm run lint && npm run test-local",
"perf": "node perf/index.js",
"test-local": "mocha test/**/*.test.js",
"test-cov": "nyc npm run test-local",
"ci": "npm run lint && npm run test-cov",
"release": "npm test && npm-ensure -t changelog && git release $npm_package_version && npm publish",
"precommit": "standard && npm-ensure -t deps"
},
"ensure": {
"deps": {
"checkDirs": [
"lib/**/*"
]
}
},
"nyc": {
"reporter": [
"text",
"json",
"lcov"
]
},
"standard": {
"global": [
"describe",
"it",
"beforeEach",
"afterEach"
],
"ignore": [
"/test",
"/perf"
]
},
"dependencies": {
"async": "^2.0.1",
"cli-source-preview": "^1.0.0",
"co": "^4.6.0",
"fs-extra": "3.x",
"loader-utils": "^1.1.0"
},
"peerDependencies": {
"webpack": "1.x || 2.x || 3.x || 4.x || 5.x",
"sass": "1.x"
},
"devDependencies": {
"coveralls": "^2.12.0",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^3.0.0",
"fast-css-loader": "^1.0.2",
"file-loader": "^0.9.0",
"husky": "*",
"mocha": "^3.2.0",
"npm-ensure": "^1.1.0",
"nyc": "*",
"prettier": "^1.19.1",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.1",
"sass": "^1.32.8",
"sass-loader": "^6.0.3",
"standard": "*",
"webpack": "3.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yibn2008/fast-sass-loader.git"
},
"keywords": [
"sass-loader",
"fast"
],
"author": "yibn2008",
"license": "MIT",
"bugs": {
"url": "https://github.com/yibn2008/fast-sass-loader/issues"
},
"homepage": "https://github.com/yibn2008/fast-sass-loader#readme"
}