Skip to content

Commit 8862604

Browse files
committed
init
0 parents  commit 8862604

File tree

4 files changed

+57
-0
lines changed

4 files changed

+57
-0
lines changed

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules
2+
tslint.json
3+
src/*.ts
4+
tsconfig.json
5+
typings

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Mocha CodeRoad
2+
3+
[Atom-CodeRoad](https://github.com/coderoad/atom-coderoad) test runner & reporter.
4+
5+
npm install mocha-coderoad

package.json

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"name": "mocha-coderoad",
3+
"version": "0.1.0",
4+
"description": "mocha test runner & reporter for atom-coderoad",
5+
"main": "lib/runner.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/coderoad/mocha-coderoad.git"
12+
},
13+
"keywords": [
14+
"coderoad",
15+
"mocha"
16+
],
17+
"author": "Shawn McKay <[email protected]>",
18+
"license": "ISC",
19+
"bugs": {
20+
"url": "https://github.com/coderoad/mocha-coderoad/issues"
21+
},
22+
"homepage": "https://github.com/coderoad/mocha-coderoad#readme",
23+
"dependencies": {
24+
"mocha": "2.4.5"
25+
}
26+
}

tsd.json

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"version": "v4",
3+
"repo": "borisyankov/DefinitelyTyped",
4+
"ref": "master",
5+
"path": "typings",
6+
"bundle": "typings/tsd.d.ts",
7+
"installed": {
8+
"es6-promise/es6-promise.d.ts": {
9+
"commit": "708609e0764daeb5eb64104af7aca50c520c4e6e"
10+
},
11+
"mocha/mocha.d.ts": {
12+
"commit": "708609e0764daeb5eb64104af7aca50c520c4e6e"
13+
},
14+
"chai/chai.d.ts": {
15+
"commit": "708609e0764daeb5eb64104af7aca50c520c4e6e"
16+
},
17+
"node/node.d.ts": {
18+
"commit": "708609e0764daeb5eb64104af7aca50c520c4e6e"
19+
}
20+
}
21+
}

0 commit comments

Comments
 (0)