forked from benignware/css-wrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 857 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
{
"name": "css-wrap",
"version": "0.1.1",
"description": "Wrap CSS rules in a namespace",
"main": "css_wrap.js",
"homepage": "https://github.com/benignware/css-wrap",
"author": {
"name": "Rafael Nowrotek",
"email": "mail@benignware.com",
"url": "http://benignware.com"
},
"repository": {
"type": "git",
"url": "https://github.com/benignware/css-wrap.git"
},
"bugs": {
"url": "https://github.com/benignware/css-wrap/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/benignware/css-wrap/blob/master/LICENSE-MIT"
}
],
"scripts": {
"test": "nodeunit test/css_wrap_test.js"
},
"dependencies": {
"css-parse": "^2.0.0",
"css-stringify": "^2.0.0",
"deepmerge": "^0.2.10"
},
"devDependencies": {
"mkdirp": "^0.5.1",
"nodeunit": "^0.9.1"
}
}