-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 981 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
43
44
{
"name": "pict-pairwise-testing",
"version": "1.1.0",
"description": "Pict wrapper for nodejs",
"main": "lib/pict.js",
"bin": {
"hello": "binaries/pict_nix"
},
"type": "commonjs",
"scripts": {
"test": "mocha tests/*.spec.js",
"prettier": "prettier --write --loglevel warn \"**/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryanrosello-og/pict-pairwise-testing.git"
},
"keywords": [
"pair",
"wise",
"testing",
"pict",
"automation"
],
"author": "Ryan Rosello",
"license": "ISC",
"bugs": {
"url": "https://github.com/ryanrosello-og/pict-pairwise-testing/issues"
},
"homepage": "https://github.com/ryanrosello-og/pict-pairwise-testing#readme",
"devDependencies": {
"mocha": "^8.4.0",
"prettier": "^2.3.0"
},
"prettier": {
"singleQuote": true,
"tabWidth": 2,
"semi": true
},
"dependencies": {
"lodash": "^4.17.21",
"temp": "^0.9.4"
}
}