forked from Thimoteus/literate-purescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
32 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/bower_components/ | ||
/node_modules/ | ||
/.pulp-cache/ | ||
/.psci* | ||
/src/.webpack.js | ||
/.psc* | ||
litps | ||
/.psa* | ||
literate | ||
shell.nix | ||
.travis.yml | ||
.vimrc | ||
gen | ||
lib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
#!/usr/bin/env node | ||
require('./output/Main').main(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,36 @@ | ||
{ | ||
"name": "literate-purescript", | ||
"version": "0.1.0", | ||
"description": "literate-style programming for purescript", | ||
"name": "paluh-litps", | ||
"version": "0.1.4", | ||
"description": "Experimental publish of Thimoteus/literate-purescript.", | ||
"main": "litps", | ||
"bin": { | ||
"paluh-litps": "index.js" | ||
}, | ||
"directories": { | ||
"test": "test", | ||
"litps": "litps" | ||
}, | ||
"scripts": { | ||
"build": "pulp build --optimise --to litps", | ||
"compile": "pulp build", | ||
"prepack": "rimraf output && npm run compile", | ||
"build": "npm run -s compile", | ||
"start": "node index.js", | ||
"test": "rm -rf test/ && npm run build && node litps --input litps/ --output test/ --i-ext litps", | ||
"copybin": "npm run build && chmod +x litps && sed -i -e '1i#!/usr/bin/env node\\' litps && mv litps ~/bin/ && echo 'Success!'" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "http://www.github.com/Thimoteus/literate-purescript.git" | ||
"url": "http://www.github.com/paluh/literate-purescript.git" | ||
}, | ||
"keywords": [ | ||
"literate", | ||
"purescript" | ||
], | ||
"author": "Thimoteus", | ||
"license": "MIT", | ||
"dependencies": {} | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"pulp": "^12.3.0", | ||
"rimraf": "^2.6.2" | ||
} | ||
} |