-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.25 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
45
46
47
{
"name": "testcase-gen",
"version": "0.2.2",
"description": "Testcase Generator",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin":{
"testcase-gen": "lib/cli.js",
"tc-gen": "lib/cli.js"
},
"files": [
"lib"
],
"scripts": {
"start": "ts-node -- ./src/",
"prepare": "npm run build && npm run doc",
"dev": "nodemon --exec ./node_modules/.bin/ts-node -- ./src/",
"build": "npm run format && tsc",
"doc": "typedoc ./src/",
"format": "prettier --write \"src/**/*.ts\""
},
"keywords": [],
"author": {
"name": "JacobLinCool",
"email": "jacoblincool@gmail.com"
},
"license": "MIT",
"dependencies": {
"randexp": "^0.5.3"
},
"devDependencies": {
"@types/node": "^16.10.9",
"nodemon": "^2.0.13",
"prettier": "^2.4.1",
"ts-node": "^10.3.0",
"typedoc": "^0.22.5",
"typescript": "^4.4.4"
},
"bugs": {
"url": "https://github.com/JacobLinCool/testcase-gen/issues"
},
"homepage": "https://jacoblincool.github.io/testcase-gen/",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/JacobLinCool/testcase-gen.git"
}
}