Skip to content

Commit

Permalink
Add component.json
Browse files Browse the repository at this point in the history
  • Loading branch information
lydell committed Mar 23, 2014
1 parent 123d6fc commit e316330
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 23 deletions.
19 changes: 19 additions & 0 deletions component.json
@@ -0,0 +1,19 @@
{
"name": "css-tokens",
"version": "0.2.0",
"author": "Simon Lydell",
"license": "MIT",
"description": "A regex that tokenizes CSS.",
"main": "index.js",
"keywords": [
"CSS",
"css",
"token",
"tokenize",
"regex"
],
"repo": "lydell/css-tokens",
"scripts": [
"index.js"
]
}
46 changes: 23 additions & 23 deletions package.json
@@ -1,23 +1,23 @@
{
"name": "css-tokens",
"version": "0.2.0",
"author": "Simon Lydell",
"license": "MIT",
"description": "A regex that tokenizes CSS.",
"main": "index.js",
"repository": "lydell/css-tokens",
"keywords": [
"CSS",
"css",
"token",
"tokenize",
"regex"
],
"scripts": {
"test": "mocha"
},
"devDependencies": {
"mocha": "^1.17.1",
"coffee-script": "~1.7.1"
}
}
{
"name": "css-tokens",
"version": "0.2.0",
"author": "Simon Lydell",
"license": "MIT",
"description": "A regex that tokenizes CSS.",
"main": "index.js",
"keywords": [
"CSS",
"css",
"token",
"tokenize",
"regex"
],
"repository": "lydell/css-tokens",
"scripts": {
"test": "mocha"
},
"devDependencies": {
"mocha": "^1.17.1",
"coffee-script": "~1.7.1"
}
}
33 changes: 33 additions & 0 deletions x-package.json5
@@ -0,0 +1,33 @@
{
name: "css-tokens",
version: "0.2.0",
author: "Simon Lydell",
license: "MIT",
description: "A regex that tokenizes CSS.",
main: "index.js",
keywords: [
"CSS",
"css",
"token",
"tokenize",
"regex"
],
overlay: {
npm: {
repository: "lydell/css-tokens",
scripts: {
test: "mocha"
},
devDependencies: {
"mocha": "^1.17.1",
"coffee-script": "~1.7.1"
}
},
component: {
repo: "lydell/css-tokens",
scripts: [
"index.js"
]
}
}
}

0 comments on commit e316330

Please sign in to comment.