Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 6022aa3

Browse files
committedMay 29, 2015
README, licence, etc.
0 parents  commit 6022aa3

File tree

7 files changed

+78
-0
lines changed

7 files changed

+78
-0
lines changed
 

‎.editorconfig

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 4
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true

‎.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
dist

‎.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__tests__

‎.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
language: node_js
2+
node_js:
3+
- 'iojs'
4+
- '0.12'

‎LICENSE-MIT

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Copyright (c) Ben Briggs <beneb.info@gmail.com> (http://beneb.info)
2+
3+
Permission is hereby granted, free of charge, to any person
4+
obtaining a copy of this software and associated documentation
5+
files (the "Software"), to deal in the Software without
6+
restriction, including without limitation the rights to use,
7+
copy, modify, merge, publish, distribute, sublicense, and/or sell
8+
copies of the Software, and to permit persons to whom the
9+
Software is furnished to do so, subject to the following
10+
conditions:
11+
12+
The above copyright notice and this permission notice shall be
13+
included in all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
17+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22+
OTHER DEALINGS IN THE SOFTWARE.

‎README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# postcss-selector-parser
2+
3+
Work in progress parser for PostCSS.
4+
5+
## License
6+
7+
MIT

‎package.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "postcss-selector-parser",
3+
"version": "0.0.0",
4+
"devDependencies": {
5+
"babel": "^5.4.3",
6+
"babel-tape-runner": "^1.1.0",
7+
"faucet": "0.0.1",
8+
"tape": "^4.0.0"
9+
},
10+
"main": "dist/index.js",
11+
"files": [
12+
"LICENSE-MIT",
13+
"dist"
14+
],
15+
"scripts": {
16+
"prepublish": "babel src --out-dir dist",
17+
"test": "babel-tape-runner \"src/**/__tests__/*.js\" | faucet"
18+
},
19+
"dependencies": {
20+
"flatten": "0.0.1",
21+
"indexes-of": "^1.0.1",
22+
"uniq": "^1.0.1"
23+
},
24+
"license": "MIT",
25+
"homepage": "https://github.com/postcss/postcss-selector-parser",
26+
"author": {
27+
"name": "Ben Briggs",
28+
"email": "beneb.info@gmail.com",
29+
"url": "http://beneb.info"
30+
},
31+
"repository": "postcss/postcss-selector-parser"
32+
}

0 commit comments

Comments
 (0)
Please sign in to comment.