-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 983 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
{
"name": "tdd-detector",
"version": "1.0.3",
"description": "A module that detects TDD usage from commits in Java and Ruby projects",
"main": "src/tdd-detector.js",
"scripts": {
"test": "mocha",
"test:watch": "mocha -w",
"lint": "eslint **/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlbertoTrindade/tdd-detector.git"
},
"keywords": [
"TDD"
],
"author": "Alberto Trindade Tavares",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlbertoTrindade/tdd-detector/issues"
},
"homepage": "https://github.com/AlbertoTrindade/tdd-detector#readme",
"devDependencies": {
"chai": "3.5.0",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.6.1",
"eslint-plugin-jsx-a11y": "^1.0.4",
"eslint-plugin-react": "^5.0.1",
"mocha": "2.5.3",
"nock": "^9.0.2"
},
"dependencies": {
"github-api": "^2.3.0",
"stem-porter": "0.0.1"
}
}