-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.59 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@simplrjs/test-generator-cli",
"version": "0.1.3",
"description": "Tool to generate tests from cases.",
"main": "./dist/index.js",
"scripts": {
"build": "tsc -p .",
"watch": "tsc -w",
"pretest": "npm run build -- --noEmit",
"test": "npm run tslint",
"test-ci": "npm test",
"tslint": "tslint --project . --config ./tslint.json && echo Successfully passed tslint test.",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SimplrJS/test-generator-cli.git"
},
"homepage": "https://github.com/SimplrJS/test-generator-cli",
"keywords": [
"SimplrJS",
"tests",
"generating",
"tool",
"ts",
"TypeScript",
"template"
],
"author": "simplrjs <[email protected]> (https://github.com/simplrjs)",
"contributors": [
"Giedrius Grabauskas <[email protected]> (https://github.com/GiedriusGrabauskas)",
"Donatas Bražionis <[email protected]> (https://github.com/DonatasBrazionis)"
],
"bin": {
"test-generator-cli": "./dist/index.js"
},
"files": [
"dist",
"@types",
"**/*.md",
"*.js",
"!*.config.js"
],
"dependencies": {
"@types/fs-extra": "^5.0.0",
"@types/handlebars": "^4.0.36",
"@types/yargs": "^10.0.1",
"fast-glob": "^1.0.1",
"fs-extra": "^5.0.0",
"handlebars": "^4.0.11",
"simplr-logger": "^1.0.1",
"typescript": "^2.6.2",
"yargs": "^10.0.3"
},
"devDependencies": {
"simplr-tslint": "0.0.1",
"tslint": "^5.8.0"
},
"publishConfig": {
"access": "public"
},
"license": "MIT"
}