-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.19 KB
/
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
{
"name": "gitaclue",
"version": "1.1.0",
"description": "GitHub Information Extraction Library",
"main": "gitaclue.js",
"directories": {
"test": "test"
},
"dependencies": {
"axios": "^0.18.0",
"validator": "^9.4.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"chai": "^4.1.2",
"mocha": "^5.2.0"
},
"scripts": {
"test-all": "mocha --reporter min --require ./test/helper.js '+(test|validate)/**/*Spec.js'",
"test-valid": "mocha --require ./test/helper.js './test/testUI_valid.Spec.js'",
"test-invalid": "mocha --require ./test/helper.js './test/testUI_invalid.Spec.js'",
"test-one": "mocha --require ./test/helper.js './test/testUI_single.Spec.js'",
"test-repo": "mocha --require ./test/helper.js './test/testRepo.Spec.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jdmedlock/GitAClue.git"
},
"keywords": [
"github",
"api"
],
"author": "Jim Medlock",
"license": "MIT",
"bugs": {
"url": "https://github.com/jdmedlock/GitAClue/issues"
},
"homepage": "https://github.com/jdmedlock/GitAClue#readme"
}