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

39 lines
976 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 %>",
2017-11-09 20:41:18 +03:00
"homepage": "http://primer.github.io/",
2017-09-07 01:33:18 +03:00
"primer": {
"category": "<%= category %>",
"module_type": "<%= module_type %>"
},
2017-12-11 18:46:30 +03:00
"files": [
"index.scss",
"lib",
"build"
],
2017-09-01 08:23:17 +03:00
"author": "GitHub, Inc.",
"license": "MIT",
2017-12-11 18:42:47 +03:00
"style": "build/build.css",
"sass": "index.scss",
2017-09-01 08:23:17 +03:00
"main": "build/index.js",
2017-11-09 20:41:18 +03:00
"repository": "https://github.com/primer/primer/tree/master/modules/<%= module %>",
2017-09-01 08:23:17 +03:00
"bugs": {
2017-11-09 20:41:18 +03:00
"url": "https://github.com/primer/primer/issues"
2017-09-01 08:23:17 +03:00
},
"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"
]
}