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
|
{
"name": "css-parse",
"version": "1.7.0",
"description": "CSS parser",
"keywords": [
"css",
"parser",
"stylesheet"
],
"author": "TJ Holowaychuk <tj@vision-media.ca>",
"license": "MIT",
"devDependencies": {
"mocha": "*",
"should": "*",
"matcha": "~0.4.0",
"bytes": "~0.2.1"
},
"main": "index",
"repository": {
"type": "git",
"url": "https://github.com/visionmedia/css-parse.git"
},
"scripts": {
"test": "make test"
},
"files": [
"index.js"
]
}
|