Browse Source

npm init && bower init

Herbert Vojčík 8 years ago
parent
commit
1fad3516a4
2 changed files with 54 additions and 0 deletions
  1. 29 0
      bower.json
  2. 25 0
      package.json

+ 29 - 0
bower.json

@@ -0,0 +1,29 @@
+{
+  "name": "usim",
+  "version": "0.1.0",
+  "homepage": "https://github.com/herby/usim",
+  "authors": [
+    "Herbert Vojčík <herby@mailbox.sk>"
+  ],
+  "description": "minimal discrete time simulation in javascript",
+  "main": "lib/usim.js",
+  "moduleType": [
+    "amd",
+    "globals",
+    "node"
+  ],
+  "keywords": [
+    "discrete",
+    "time",
+    "simulation",
+    "minimal"
+  ],
+  "license": "MIT",
+  "ignore": [
+    "**/.*",
+    "node_modules",
+    "bower_components",
+    "test",
+    "tests"
+  ]
+}

+ 25 - 0
package.json

@@ -0,0 +1,25 @@
+{
+  "name": "usim",
+  "version": "0.1.0",
+  "description": "minimal discrete time simulation in javascript",
+  "main": "lib/usim.js",
+  "scripts": {
+    "test": "echo \"Error: no test specified\" && exit 1"
+  },
+  "repository": {
+    "type": "git",
+    "url": "git+https://github.com/herby/usim.git"
+  },
+  "keywords": [
+    "discrete",
+    "time",
+    "simulation",
+    "minimal"
+  ],
+  "author": "Herbert Vojčík <herby@mailbox.sk>",
+  "license": "MIT",
+  "bugs": {
+    "url": "https://github.com/herby/usim/issues"
+  },
+  "homepage": "https://github.com/herby/usim#readme"
+}