-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.26 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
42
43
44
{
"name": "dtdt",
"version": "0.0.3",
"description": "A test case generator from a decision tree to decision table.",
"main": "src/dtdt.js",
"bin": "bin/index.js",
"scripts": {
"test": "npx jest",
"webpack": "npx webpack node_modules/markdown/lib/index.js --output-library-target window --output-library markdown -o src/markdown.min.js && npx webpack node_modules/yaml/index.js --output-library-target window --output-library yaml -o src/yaml.min.js",
"docs": "npx jsdoc2md -c jsdoc.conf.json src/dtdt.js > DOCS.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freddiefujiwara/dtdt.git"
},
"keywords": [
"testing-tools",
"testcase-generator",
"decision-trees",
"decisiontable",
"decision-tree"
],
"author": {
"name": "Fumikazu Fujiwara",
"email": "[email protected]",
"url": "http://freddiefujiwara.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/freddiefujiwara/dtdt/issues"
},
"homepage": "https://freddiefujiwara.github.io/dtdt/",
"devDependencies": {
"jest": "^26.0.1",
"jsdoc-to-markdown": "^5.0.3",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"markdown": "^0.5.0",
"minimist": "^1.2.5",
"yaml": "^1.10.0"
}
}