forked from postcss/postcss-plugin-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 860 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 860 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"name": "PLUGIN_NAME",
"version": "0.0.0",
"description": "CarteBlanche plugin PLUGIN_DESC",
"keywords": [
KEYWORDS
],
"main": "plugin.js",
"author": "AUTHOR_NAME <AUTHOR_EMAIL>",
"license": "MIT",
"repository": "GITHUB_NAME/PLUGIN_NAME",
"bugs": {
"url": "https://github.com/GITHUB_NAME/PLUGIN_NAME/issues"
},
"homepage": "https://github.com/GITHUB_NAME/PLUGIN_NAME",
"dependencies": {
"react": "^15.0.1"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-preset-react": "",
"babel-preset-es2015": "",
"babel-preset-stage-0": "",
},
"peerDependencies": {
"carte-blanche": "^0.0.0",
"webpack": ">=1 <3"
},
"scripts": {
"build": "BABEL_DISABLE_CACHE=1 BABEL_ENV=production babel --ignore=node_modules --out-dir='dist' plugin.js resolver.js server/**/*.js",
"test": ""
}
}