Skip to content

Commit 44432d0

Browse files
authored
Merge pull request #48 from DanArthurGallagher/package-up
Create an npm package for development
2 parents 9719f09 + d1f23f6 commit 44432d0

File tree

5 files changed

+68
-3
lines changed

5 files changed

+68
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules

LICENSE.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Copyright (c) 2011 Jonathan Hoyt
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4+
5+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6+
7+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ So I created [Scriptular](http://scriptular.com) and started regular expressing
1313

1414
## Compiling Coffeescript in Development
1515

16-
* clone the repo
17-
* npm install -g coffee-script
18-
* cake build
16+
1. clone the repo
17+
2. npm install
18+
3. npm run build
1919

2020
## Running Tests
2121

package-lock.json

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
{
2+
"name": "scriptular",
3+
"version": "1.0.0",
4+
"description": "A rubular.com clone for JavaScript regular expressions",
5+
"main": "application.js",
6+
"private": true,
7+
"scripts": {
8+
"test": "echo \"Open SpecRunner.html in a browser to run tests\" && exit 0",
9+
"build": "cake build"
10+
},
11+
"repository": {
12+
"type": "git",
13+
"url": "git+https://github.com/jonmagic/scriptular.git"
14+
},
15+
"keywords": [
16+
"regexp",
17+
"front-end"
18+
],
19+
"contributors": [
20+
"Jonathan Hoyt (https://github.com/jonmagic)",
21+
"Brandon Keepers (https://github.com/bkeepers)",
22+
"Aaron Kalin (https://github.com/martinisoft)",
23+
"Ben Truyman (https://github.com/bentruyman)",
24+
"John K. Paul (https://github.com/johnkpaul)",
25+
"Adam Brodzinski (https://github.com/AdamBrodzinski)",
26+
"brycecr (https://github.com/brycecr)",
27+
"Judith Hendeveld (https://github.com/judith)",
28+
"beechnut (https://github.com/beechnut)",
29+
"Blair Anderson (https://github.com/blairanderson)",
30+
"Vladimir Pestov (https://github.com/KozzyKoder)",
31+
"Corey Leveen (https://github.com/coreyleveen)",
32+
"Daniel Arthur Gallagher (https://github.com/DanArthurGallagher)",
33+
"Mosh Feu (https://github.com/moshfeu)"
34+
],
35+
"license": "MIT",
36+
"bugs": {
37+
"url": "https://github.com/jonmagic/scriptular/issues"
38+
},
39+
"homepage": "https://github.com/jonmagic/scriptular#readme",
40+
"devDependencies": {
41+
"coffeescript": "1.12.7"
42+
}
43+
}

0 commit comments

Comments
 (0)