You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
1.2 KiB

10 years ago
{
"name": "ava",
"version": "0.0.4",
"description": "Simple concurrent test runner",
10 years ago
"license": "MIT",
"repository": "sindresorhus/ava",
"bin": {
"ava": "cli.js"
},
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "http://sindresorhus.com"
},
10 years ago
"maintainers": [
{
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "sindresorhus.com"
},
{
"name": "Kevin Mårtensson",
"email": "kevinmartensson@gmail.com",
10 years ago
"url": "github.com/kevva"
}
],
10 years ago
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "node cli.js test/test.js | faucet"
10 years ago
},
"files": [
"index.js",
"cli.js",
"lib"
],
"keywords": [
"cli",
"bin",
"ava",
"test",
"runner",
"concurrent",
"parallel",
"tape",
"mocha",
"qunit",
"jasmine"
10 years ago
],
"dependencies": {
"chalk": "^0.5.1",
"deep-equal": "^0.2.1",
10 years ago
"each-async": "^1.0.0",
"fn-name": "^2.0.0",
"globby": "^1.0.0",
10 years ago
"log-symbols": "^1.0.0",
"meow": "^2.0.0",
"throws": "^0.1.7",
10 years ago
"update-notifier": "^0.2.2"
},
"devDependencies": {
"faucet": "^0.0.1",
"tape": "^3.0.3"
10 years ago
}
}