-
Notifications
You must be signed in to change notification settings - Fork 377
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
1 parent
b6f2b80
commit 0438f11
Showing
8 changed files
with
35 additions
and
15 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,2 @@ | ||
repo-owner = fantasyland | ||
repo-name = fantasy-land |
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,4 @@ | ||
{ | ||
"root": true, | ||
"extends": ["./node_modules/sanctuary-style/eslint-es3.json"] | ||
} |
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 +1,2 @@ | ||
node_modules | ||
/coverage/ | ||
/node_modules/ |
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,4 @@ | ||
# Contributing | ||
|
||
Additions and modifications to the specification are best proposed in issues. | ||
If there is support for a proposal, the next step is to submit a pull request. |
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
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 |
---|---|---|
|
@@ -20,23 +20,23 @@ | |
}, | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"eslint": "3.8.x", | ||
"sanctuary-style": "0.2.x", | ||
"xyz": "2.0.x" | ||
"sanctuary-scripts": "2.x.x" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/fantasyland/fantasy-land.git" | ||
"url": "git://github.com/fantasyland/fantasy-land.git" | ||
}, | ||
"files": [ | ||
"index.js" | ||
"/LICENSE", | ||
"/README.md", | ||
"/index.js", | ||
"/package.json" | ||
], | ||
"main": "index.js", | ||
"scripts": { | ||
"lint": "eslint --config node_modules/sanctuary-style/eslint-es6.json --env es6 --env node --rule 'max-len: [off]' -- *.js", | ||
"test": "npm run lint", | ||
"release-major": "xyz --repo [email protected]:fantasyland/fantasy-land.git --increment major", | ||
"release-minor": "xyz --repo [email protected]:fantasyland/fantasy-land.git --increment minor", | ||
"release-patch": "xyz --repo [email protected]:fantasyland/fantasy-land.git --increment patch" | ||
"doctest": "sanctuary-doctest", | ||
"lint": "sanctuary-lint", | ||
"release": "sanctuary-release", | ||
"test": "npm run lint && sanctuary-test && npm run doctest" | ||
} | ||
} |
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,10 @@ | ||
'use strict'; | ||
|
||
const assert = require ('assert'); | ||
|
||
const FL = require ('..'); | ||
|
||
|
||
test ('exports', () => { | ||
assert.strictEqual (FL.map, 'fantasy-land/map'); | ||
}); |
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 @@ | ||
--ui tdd |