add top level package json, gitignore and npm install (#3)

* add top level package json, gitignore and npm install

* update workspaces add homepages to both

* update with /css/readme
This commit is contained in:
Will Bjorn 2021-02-19 16:01:45 -08:00 коммит произвёл GitHub
Родитель f1b98113f0
Коммит 40c7b7b7ea
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
5 изменённых файлов: 80 добавлений и 19 удалений

1
.gitignore поставляемый Normal file
Просмотреть файл

@ -0,0 +1 @@
node_modules

3
css/README.md Normal file
Просмотреть файл

@ -0,0 +1,3 @@
# Atlas CSS
Welcome to the Atlas CSS framework

Просмотреть файл

@ -1,21 +1,22 @@
{
"name": "@microsoft/atlas-css",
"version": "0.0.1",
"description": "Styles backing the Atlas Design System used by Microsoft's Developer Relations.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/atlas-design"
},
"keywords": [
"microsoft",
"atlas",
"design-system",
"css",
"scss"
],
"author": "Microsoft Corporation",
"license": "MIT"
"name": "@microsoft/atlas-css",
"version": "0.0.1",
"description": "Styles backing the Atlas Design System used by Microsoft's Developer Relations.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"homepage": "https://github.com/microsoft/atlas-design",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/atlas-design"
},
"keywords": [
"microsoft",
"atlas",
"design-system",
"css",
"scss"
],
"author": "Microsoft Corporation",
"license": "MIT"
}

30
package-lock.json сгенерированный Normal file
Просмотреть файл

@ -0,0 +1,30 @@
{
"name": "@microsoft/atlas-design",
"version": "1.0.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@microsoft/atlas-design",
"version": "1.0.0",
"license": "MIT",
"workspaces": [
"css"
]
},
"css": {
"name": "@microsoft/atlas-css",
"version": "0.0.1",
"license": "MIT"
},
"node_modules/@microsoft/atlas-css": {
"resolved": "css",
"link": true
}
},
"dependencies": {
"@microsoft/atlas-css": {
"version": "file:css"
}
}
}

26
package.json Normal file
Просмотреть файл

@ -0,0 +1,26 @@
{
"name": "@microsoft/atlas-design",
"version": "1.0.0",
"description": "The Atlas Design System used by Microsoft's Developer Relations platform.",
"private": true,
"homepage": "https://github.com/microsoft/atlas-design",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/atlas-design"
},
"workspaces": [
"css"
],
"keywords": [
"microsoft",
"atlas",
"design-system",
"css",
"scss"
],
"author": "Microsoft Corporation",
"license": "MIT"
}