You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.1 KiB
50 lines
1.1 KiB
{ |
|
"name": "postcss-header", |
|
"description": "Add a header to a file.", |
|
"version": "2.0.0", |
|
"main": "index.js", |
|
"files": [ |
|
"lib" |
|
], |
|
"scripts": { |
|
"lint": "eslint *.js lib --fix", |
|
"release": "npm run lint && npm test", |
|
"test": "mocha" |
|
}, |
|
"repository": { |
|
"type": "git", |
|
"url": "git+https://github.com/fengyuanchen/postcss-header.git" |
|
}, |
|
"keywords": [ |
|
"header", |
|
"banner", |
|
"postcss", |
|
"postcss-plugin", |
|
"css" |
|
], |
|
"author": { |
|
"name": "Chen Fengyuan", |
|
"url": "https://chenfengyuan.com/" |
|
}, |
|
"license": "MIT", |
|
"bugs": { |
|
"url": "https://github.com/fengyuanchen/postcss-header/issues" |
|
}, |
|
"homepage": "https://fengyuanchen.github.io/postcss-header", |
|
"dependencies": { |
|
"@babel/core": "^7.8.4", |
|
"@babel/register": "^7.8.3" |
|
}, |
|
"peerDependencies": { |
|
"postcss": "^7.0.0" |
|
}, |
|
"devDependencies": { |
|
"@babel/preset-env": "^7.8.4", |
|
"chai": "^4.2.0", |
|
"eslint": "^6.8.0", |
|
"eslint-config-airbnb-base": "^14.0.0", |
|
"eslint-plugin-import": "^2.20.1", |
|
"mocha": "^7.0.1", |
|
"postcss": "^7.0.27" |
|
} |
|
}
|
|
|