forked from nzakas/cssurl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1013 Bytes
/
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
{
"name": "cssurl",
"author": "nzakas",
"version": "1.2.1",
"description": "A utility to help rewrite URLs contained in CSS code",
"main": "./index.js",
"repository": {
"type": "git",
"url": "https://github.com/nzakas/cssurl"
},
"keywords": [
"css",
"url"
],
"license": "BSD-3-Clause",
"files": [
"LICENSE",
"README.md",
"index.js",
"lib"
],
"scripts": {
"test": "node Makefile.js",
"lint": "node Makefile.js lint",
"docs": "node Makefile.js docs",
"patch": "node Makefile.js patch",
"minor": "node Makefile.js minor",
"major": "node Makefile.js major"
},
"dependencies": {
"parserlib": "^0.2.5"
},
"devDependencies": {
"browserify": "^5.11.2",
"chai": "^1.9.1",
"dateformat": "^1.0.8",
"eslint": "^0.8.2",
"istanbul": "^0.3.2",
"jsdoc": "^3.3.0-alpha9",
"leche": "^1.0.1",
"mocha": "^2.0.1",
"shelljs": "^0.3.0",
"shelljs-nodecli": "^0.1.1",
"stream-string": "^0.1.0"
}
}