Browse Source

Prepare empty test

Herbert Vojčík 9 years ago
parent
commit
3dfafd1328
3 changed files with 34 additions and 0 deletions
  1. 1 0
      .gitignore
  2. 26 0
      package.json
  3. 7 0
      test/produce.js

+ 1 - 0
.gitignore

@@ -0,0 +1 @@
+node_modules/

+ 26 - 0
package.json

@@ -0,0 +1,26 @@
+{
+  "name": "amd-config-builder",
+  "version": "0.0.1",
+  "description": "Builds amd config for a project from configs of its components",
+  "main": "lib/configbuilder.js",
+  "scripts": {
+    "test": "mocha"
+  },
+  "repository": {
+    "type": "git",
+    "url": "git://github.com/herby/amd-config-builder.git"
+  },
+  "keywords": [
+    "AMD",
+    "config",
+    "build"
+  ],
+  "author": "Herbert Vojčík",
+  "license": "MIT",
+  "bugs": {
+    "url": "https://github.com/herby/amd-config-builder/issues"
+  },
+  "engines": {
+    "node": ">=0.8.0"
+  }
+}

+ 7 - 0
test/produce.js

@@ -0,0 +1,7 @@
+/**
+ * Created by Herby on 31. 5. 2014.
+ */
+
+describe('#produceConfigObject', function () {
+
+});