-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.7 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
{
"name": "rooibos",
"description": "A testing framework modeled on the style of mocha, but with 100% async in mind including test definition and reporting",
"version": "1.0.0-beta.4",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"repository": "https://github.com/WHenderson/rooibos.git",
"author": {
"name": "Will Henderson",
"email": "[email protected]"
},
"private": false,
"keywords": [
"testing",
"async",
"promise"
],
"license": "Apache-2.0",
"devDependencies": {
"@types/docopt": "^0.6.31",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.4",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"fast-glob": "^3.2.2",
"mocha": "^7.1.2",
"prettier": "^2.0.5",
"quicktype": "^15.0.223",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-no-unused-expression-chai": "^0.1.4",
"typedoc": "^0.17.6",
"typescript": "^3.8.3"
},
"dependencies": {
"@types/chai": "^4.2.11",
"@types/chai-as-promised": "^7.1.2",
"advanced-promises": "^1.0.0-beta.8",
"docopt": "^0.6.2",
"guid-typescript": "^1.0.9"
},
"bin": {
"rooibos": "src/cli/index.js"
},
"scripts": {
"build:config": "quicktype --lang ts --src-lang schema --out src/cli/options/config.schema.ts src/cli/options/config.schema.json",
"build:doc": "typedoc",
"build:src": "yarn run build:config && tsc",
"build": "yarn run build:src && yarn run build:doc",
"pretest": "yarn run build:src",
"test": "mocha",
"prepublishOnly": "yarn run build",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json"
},
"files": [
"dist/src/**/*"
]
}