forked from thlorenz/namespace-css
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1011 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": "namespace-css",
"version": "0.1.3",
"description": "Namespaces all rules found in a CSS file to make them only apply to a subset of the page.",
"main": "index.js",
"bin": {
"namespace-css": "bin/namespace-css.js"
},
"scripts": {
"test": "tap test/*.js"
},
"repository": {
"type": "git",
"url": "git://github.com/thlorenz/namespace-css.git"
},
"homepage": "https://github.com/thlorenz/namespace-css",
"dependencies": {
"css-parse": "~2.0.0",
"css-stringify": "~2.0.0",
"traverse": "~0.6.6",
"minimist": "1.1.0"
},
"devDependencies": {
"tap": "~0.6.0"
},
"keywords": [
"css",
"namespace",
"selector",
"mutate",
"transform",
"refactor"
],
"author": {
"name": "Thorsten Lorenz",
"email": "thlorenz@gmx.de",
"url": "http://thlorenz.com"
},
"license": {
"type": "MIT",
"url": "https://github.com/thlorenz/namespace-css/blob/master/LICENSE"
},
"engine": {
"node": ">=0.10"
}
}