-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 994 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "js-coderoad",
"version": "0.2.1",
"description": "bundled javascript features for coderoad test runners",
"keywords": [
"coderoad",
"javascript",
"js",
"mocha"
],
"homepage": "https://github.com/coderoad/js-coderoad#readme",
"bugs": {
"url": "https://github.com/coderoad/js-coderoad/issues"
},
"license": "ISC",
"author": "Shawn McKay <shawn.j.mckay@gmail.com>",
"files": [
"lib",
"package.json",
"*.md"
],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/coderoad/js-coderoad.git"
},
"scripts": {
"test": "ava test/*.js",
"watch:test": "ava test/*.js --watch"
},
"dependencies": {
"babel-plugin-transform-es2015-modules-commonjs": "^6.14.0",
"babel-register": "^6.14.0",
"node-file-exists": "^1.1.0",
"process-console-log": "^0.3.0",
"rewire-coderoad": "^3.1.4"
},
"devDependencies": {
"ava": "^0.16.0",
"sinon": "^1.17.5"
}
}