Skip to content

Commit

Permalink
NPM package initialization
Browse files Browse the repository at this point in the history
Initialize the NPM `package.json` file (1) that contains the project's
metadata and dependency definitions.

References:

  (1) https://docs.npmjs.com/files/package.json

Closes GH-3
  • Loading branch information
arcticicestudio committed Nov 14, 2018
0 parents commit ff99b86
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"name": "nord-docs",
"title": "Nord Docs",
"version": "0.0.0",
"description": "The official Nord website and documentation",
"author": {
"name": "Arctic Ice Studio",
"email": "[email protected]",
"url": "http://arcticicestudio.com"
},
"homepage": "http://nordtheme.com",
"repository": {
"type": "git",
"url": "git+https://github.com/arcticicestudio/nord-docs.git"
},
"bugs": {
"url": "https://github.com/arcticicestudio/nord-docs/issues"
},
"private": true,
"license": "MIT",
"keywords": ["nord", "website", "documentation", "react", "arcticicestudio"]
}

0 comments on commit ff99b86

Please sign in to comment.