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) docs.npmjs.com/files/package.json

Resolves GH-1
  • Loading branch information
arcticicestudio committed Jan 8, 2019
0 parents commit ad46d7f
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"name": "arctic-ocean-fractal",
"title": "Arctic Ocean Fractal",
"version": "0.0.0",
"description": "An animated fractal of the arctic ocean",
"author": {
"name": "Arctic Ice Studio",
"email": "development@arcticicestudio.com",
"url": "https://arcticicestudio.com"
},
"homepage": "https://github.com/arcticicestudio/arctic-ocean-fractal",
"repository": {
"type": "git",
"url": "git+https://github.com/arcticicestudio/arctic-ocean-fractal.git"
},
"bugs": {
"url": "https://github.com/arcticicestudio/arctic-ocean-fractal/issues"
},
"license": "MIT",
"keywords": [
"arctic",
"ocean",
"fractal",
"animation",
"svg",
"react",
"reactjs",
"nord",
"arcticicestudio"
]
}

0 comments on commit ad46d7f

Please sign in to comment.