This repository has been archived by the owner on Feb 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
61 lines (61 loc) · 1.58 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
{
"name": "prescript",
"version": "0.55555555.0",
"description": "Object-oriented acceptance test tool",
"author": "Thai Pangsakulyanont <[email protected]>",
"license": "MIT",
"main": "./lib/singletonApi.js",
"types": "./api/prescript.d.ts",
"bin": "./bin/prescript",
"files": [
"lib",
"bin",
"api/prescript.d.ts",
"cli.js"
],
"scripts": {
"lint": "eslint . --ext .ts,.js",
"build": "tsc",
"prepare": "rm -rf lib && yarn build",
"test": "jest",
"test-examples": "node examples/testAll.js",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"dependencies": {
"@types/cosmiconfig": "^5.0.3",
"allure-js-commons": "^2.10.0",
"chalk": "^2.4.1",
"co": "^4.6.0",
"cosmiconfig": "^5.0.7",
"error-stack-parser": "^2.0.1",
"indent-string": "^3.0.0",
"invariant": "^2.2.2",
"minimist": "^1.2.0",
"ms": "^0.7.2",
"vorpal": "^1.11.4"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.13.44",
"@microsoft/api-extractor": "^7.18.7",
"@types/indent-string": "^3.0.0",
"@types/invariant": "^2.2.29",
"@types/jest": "^22.2.3",
"@types/ms": "^0.7.30",
"@types/node": "^16.0.0",
"@typescript-eslint/parser": "^2.2.0",
"allure-commandline": "^2.13.0",
"eslint": "^6.3.0",
"eslint-config-prettier": "^6.2.0",
"eslint-plugin-prettier": "^3.1.0",
"glob": "^7.1.2",
"jest": "^22.4.3",
"prettier": "^1.18.2",
"ts-jest": "^22.4.4",
"typescript": "^5.3.3",
"vuepress": "^1.4.1"
},
"volta": {
"node": "16.20.2"
}
}