-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
38 lines (38 loc) · 828 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
{
"name": "parse-css",
"version": "0.1.0",
"description": "Standards-based CSS parser, based on the CSS Syntax spec.",
"keywords": [
"css",
"parser"
],
"author": "Tab Atkins <jackalmage@gmail.com>",
"repository": {
"type": "git",
"url": "git://github.com/tabatkins/parse-css.git"
},
"main": "parse-css.js",
"homepage": "https://github.com/tabatkins/parse-css",
"contributors": [
{
"name": "Tab Atkins Jr."
}
],
"bugs": {
"url": "https://github.com/tabatkins/parse-css/issues",
"email": "jackalmage@gmail.com"
},
"dependencies": {},
"devDependencies": {
"ansidiff": "^1.0.0"
},
"licenses": [
{
"type": "CC0",
"url": "http://github.com/tabatkins/parse-css/raw/master/LICENSE"
}
],
"scripts": {
"test": "node tests.js"
}
}