-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 993 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
{
"name": "qict",
"version": "1.0.6",
"description": "A pairwise test case generator implements from https://github.com/sylvainhalle/QICT",
"main": "src/qict.js",
"bin": "bin/index.js",
"scripts": {
"test": "npx jest",
"docs": "npx jsdoc2md -c jsdoc.conf.json src/qict.js > DOCS.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freddiefujiwara/node-qict.git"
},
"keywords": [
"qict",
"combinatorial-testing",
"testing-tools"
],
"author": {
"name": "Fumikazu Fujiwara",
"email": "[email protected]",
"url": "http://freddiefujiwara.com"
},
"license": "SEE LICENSE IN https://github.com/freddiefujiwara/node-qict/blob/master/LICENSE",
"bugs": {
"url": "https://github.com/freddiefujiwara/node-qict/issues"
},
"homepage": "https://freddiefujiwara.github.io/node-qict/",
"devDependencies": {
"jest": "^26.0.1",
"jsdoc-to-markdown": "^5.0.3"
},
"dependencies": {
"minimist": "^1.2.5"
}
}