1
1
mirror of https://github.com/primer/css.git synced 2024-12-12 10:47:14 +03:00
css/tools/generator-primer-module/app/templates/package.json

33 lines
892 B
JSON
Raw Normal View History

2017-09-01 08:23:17 +03:00
{
2017-09-05 20:26:59 +03:00
"version": "0.0.1",
2017-09-01 08:23:17 +03:00
"name": "<%= module %>",
"description": "<%= description %>",
"homepage": "http://primercss.io/",
2017-09-07 01:33:18 +03:00
"primer": {
"category": "<%= category %>",
"module_type": "<%= module_type %>"
},
2017-09-01 08:23:17 +03:00
"author": "GitHub, Inc.",
"license": "MIT",
"style": "index.scss",
2017-09-01 08:23:17 +03:00
"main": "build/index.js",
"repository": "https://github.com/primer/primer-css/tree/master/modules/<%= module %>",
"bugs": {
"url": "https://github.com/primer/primer-css/issues"
},
"scripts": {
"test-docs": "../../script/test-docs",
"build": "../../script/npm-run primer-module-build index.scss",
2017-09-01 08:23:17 +03:00
"prepare": "npm run build",
"lint": "../../script/lint-scss",
"test": "../../script/npm-run-all build lint test-docs"
2017-09-01 08:23:17 +03:00
},
"dependencies": {
"primer-support": "<%= dependencies['primer-support'].version %>"
},
"keywords": [
"github",
"primer"
]
}