-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
65 lines (65 loc) · 1.36 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
{
"name": "css-url-relative-plugin",
"version": "1.1.0",
"description": "webpack plugin to convert url(...) in css to relative path",
"main": "lib/index.js",
"scripts": {
"lint": "standard --fix && npm-ensure -t deps",
"test": "npm run lint && npm run test-local",
"test-local": "mocha test/**/*.test.js",
"test-cov": "nyc npm run test-local",
"ci": "npm run lint && npm run test-cov",
"precommit": "standard && npm-ensure -t deps"
},
"ensure": {
"deps": {
"checkDirs": [
"lib/**/*",
"bin/*"
]
}
},
"nyc": {
"reporter": [
"text",
"json",
"lcov"
]
},
"standard": {
"global": [
"describe",
"it",
"beforeEach",
"afterEach"
],
"ignore": [
"/test"
]
},
"dependencies": {
"loader-utils": "^1.1.0",
"parse-import": "^2.0.0",
"webpack-sources": "^1.1.0"
},
"devDependencies": {
"css-loader": "^0.28.11",
"file-loader": "^1.1.11",
"husky": "0.x",
"mini-css-extract-plugin": "^0.4.0",
"mocha": "^3.0.2",
"npm-ensure": "^1.0.0",
"nyc": "11.x",
"standard": "11.x",
"webpack": "^4.10.2"
},
"repository": {
"type": "git",
"url": "[email protected]:yibn2008/css-url-relative-plugin.git"
},
"keywords": [
"css-url-relative-plugin"
],
"author": "zoujie.wzj",
"license": "MIT"
}