Skip to content

Commit 6e84689

Browse files
committed
Add package.json and LICENSE
1 parent 05fe603 commit 6e84689

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

LICENSE

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
The code in this repository is licensed under the CC0 license.
2+
3+
http://creativecommons.org/publicdomain/zero/1.0/
4+
5+
It is free to use for any purpose. No attribution, permission, or reproduction of this license is required.

package.json

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"name": "css-parser",
3+
"version": "0.1.0",
4+
"description": "Standards-based CSS parser, based on the CSS Syntax spec.",
5+
"keywords": ["css", "parser"],
6+
"author": "Tab Atkins <[email protected]>",
7+
"repository": {
8+
"type": "git",
9+
"url": "git://github.com/tabatkins/css-parser.git"
10+
},
11+
"main": "index",
12+
"homepage": "https://github.com/tabatkins/css-parser",
13+
"contributors": [
14+
{
15+
"name": "Tab Atkins Jr."
16+
}
17+
],
18+
"bugs": {
19+
"url": "https://github.com/tabatkins/css-parser/issues",
20+
"email": "[email protected]"
21+
},
22+
"dependencies": {},
23+
"devDependencies": {},
24+
"licenses": [
25+
{
26+
"type": "CC0",
27+
"url": "http://github.com/tabatkins/css-parser/raw/master/LICENSE"
28+
}
29+
],
30+
"scripts": {}
31+
}

0 commit comments

Comments
 (0)