Navigation Menu

Skip to content

Commit

Permalink
setup dep for cellular-automata-rule-parser
Browse files Browse the repository at this point in the history
  • Loading branch information
kchapelier committed Jan 29, 2016
1 parent fb0bfd2 commit af0ad0e
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -31,3 +31,5 @@ node_modules

# Optional REPL history
.node_repl_history

.idea
5 changes: 5 additions & 0 deletions index.js
@@ -0,0 +1,5 @@
"use strict";

var parser = require('cellular-automata-rule-parser');

console.log(parser('NLUKY 12299'));
22 changes: 22 additions & 0 deletions package.json
@@ -0,0 +1,22 @@
{
"name": "cellular-automata-voxel-shader",
"version": "1.0.0",
"description": "Generate a voxel shader (for MagicaVoxel) from a custom CA rule.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kchapelier/cellular-automata-voxel-shader.git"
},
"author": "Kevin Chapelier",
"license": "MIT",
"bugs": {
"url": "https://github.com/kchapelier/cellular-automata-voxel-shader/issues"
},
"homepage": "https://github.com/kchapelier/cellular-automata-voxel-shader#readme",
"dependencies": {
"cellular-automata-rule-parser": "^2.0.0"
}
}

0 comments on commit af0ad0e

Please sign in to comment.