-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.74 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
{
"name": "chain-simple",
"version": "1.3.3",
"description": "Main purpose of this package is - provide simple way to build chain between any item methods",
"main": "built/index.js",
"directories": {
"example": "examples",
"lib": "lib"
},
"scripts": {
"test": "LOG_LEVEL=VERBOSE mocha ./specs/**/*.spec.ts --require ts-node/register --timeout 30000",
"test:verbose": "LOG_LEVEL=VERBOSE mocha ./specs/**/*.spec.ts --require ts-node/register --timeout 30000",
"test:watch": "mocha ./specs/**/*.spec.ts --require ts-node/register --timeout 30000 --watch",
"lint": "eslint --ext .ts ./",
"tsc": "rm -rf ./built && tsc",
"prepublish": "npm run tsc"
},
"keywords": [
"proxy object",
"proxify",
"flexible extension",
"extension",
"proxy method",
"chaining",
"chain",
"chain methods",
"wrap in chain"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Simple-Automation-Testing/chain-simple.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Simple-Automation-Testing/chain-simple/issues"
},
"homepage": "https://github.com/Simple-Automation-Testing/chain-simple#readme",
"devDependencies": {
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.17",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"@typescript-eslint/parser": "^4.11.1",
"assertior": "0.0.23",
"eslint": "^7.16.0",
"eslint-plugin-chai-expect": "^2.2.0",
"eslint-plugin-chai-friendly": "^0.6.0",
"eslint-plugin-mocha": "^8.0.0",
"mocha": "^8.2.1",
"prettier": "^2.6.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
},
"engines": {
"node": ">=12.18.3"
},
"dependencies": {
"sat-utils": "1.9.0"
}
}