Skip to content

Commit 57d6399

Browse files
committed
added package json
1 parent 73cfc25 commit 57d6399

2 files changed

Lines changed: 32 additions & 0 deletions

File tree

.gitignore

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

package.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"name": "postcss-modules-constants",
3+
"version": "1.0.0",
4+
"description": "PostCSS plugin for CSS Modules to pass arbitrary constants between your module files",
5+
"main": "lib/index.js",
6+
"scripts": {
7+
"test": "mocha --compilers js:babel/register"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/css-modules/postcss-modules-constants.git"
12+
},
13+
"keywords": [
14+
"css",
15+
"modules",
16+
"postcss"
17+
],
18+
"author": "Glen Maddern",
19+
"license": "ISC",
20+
"bugs": {
21+
"url": "https://github.com/css-modules/postcss-modules-constants/issues"
22+
},
23+
"homepage": "https://github.com/css-modules/postcss-modules-constants#readme",
24+
"devDependencies": {
25+
"babel": "^5.8.23",
26+
"mocha": "^2.3.2"
27+
},
28+
"dependencies": {
29+
"postcss": "^5.0.5"
30+
}
31+
}

0 commit comments

Comments
 (0)