-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.16 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.16 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
45
46
47
48
49
{
"name": "postcss-custom-url",
"version": "4.2.1",
"description": "Transform `url()` in css",
"main": "index.js",
"scripts": {
"test": "npm run lint && tap test/*.js",
"cov": "npm run lint && tap --cov test/*.js",
"lint": "eslint *.js 'lib/**/*.js' test/*.js bin/*.js",
"coveralls": "COVERALLS_REPO_TOKEN=RUouy9GcAFuVTLZVFVLuNFxhjrk6fuAns tap test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reducejs/postcss-custom-url.git"
},
"keywords": [
"postcss-plugin",
"postcss",
"url",
"assets",
"copy",
"base64",
"rebase"
],
"author": "zoubin",
"license": "MIT",
"bugs": {
"url": "https://github.com/reducejs/postcss-custom-url/issues"
},
"homepage": "https://github.com/reducejs/postcss-custom-url#readme",
"dependencies": {
"async-array-methods": "^2.1.0",
"getp": "^1.2.0",
"mime": "^1.3.4",
"mkdirp": "^0.5.1",
"node-promisify": "^1.2.0",
"postcss": "^5.0.16",
"shasum": "^1.0.2",
"util-mix": "^3.0.2"
},
"engines": {
"node": ">=4.2.1"
},
"devDependencies": {
"del": "^2.0.2",
"eslint": "^2.1.0",
"tap": "^5.0.0"
}
}