-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
103 lines (103 loc) · 2.95 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "plumadriver",
"version": "0.10.1",
"description": "",
"main": "./build/index.js",
"dependencies": {
"@types/supertest": "^2.0.10",
"async-mutex": "^0.1.4",
"body-parser": "^1.19.0",
"dom-accessibility-api": "^0.5.4",
"express": "^4.17.1",
"express-winston": "^4.0.5",
"has": "^1.0.3",
"jsdom": "^16.2.1",
"mime-types": "^2.1.26",
"minimist": "^1.2.6",
"pjson": "^1.0.9",
"tough-cookie": "^4.0.0",
"uuid": "^3.4.0",
"validator": "^13.7.0",
"vm2": "^3.9.6",
"wait-for-expect": "^3.0.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/express": "^4.17.8",
"@types/has": "^1.0.0",
"@types/jsdom": "^16.2.4",
"@types/uuid": "^8.3.0",
"@types/validator": "^13.1.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"adm-zip": "^0.4.14",
"commitlint": "^11.0.0",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^3.1.0",
"jest": "^26.4.2",
"jsdoc": "^3.6.2",
"lint-staged": "^9.5.0",
"nock": "^11.9.1",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"pkg": "^4.4.4",
"prettier": "^1.19.1",
"supertest": "^4.0.2",
"typedoc": "^0.15.8",
"typescript": "^4.0.3"
},
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/src/",
"/node_modules/"
]
},
"scripts": {
"pretest": "run-s lint compile",
"test": "jest",
"start": "node ./build/index.js",
"compile": "tsc",
"package:linux": "pkg . --target latest-linux-x64",
"package:win": "pkg . --target latest-win-x64",
"package:macos": "pkg . --target latest-mac-x64",
"package:all": "pkg . --target latest-linux-x64,latest-win-x64,latest-mac-x64",
"build:linux": "run-s compile package:linux",
"build:win": "run-s compile package:win",
"build:macos": "run-s compile package:macos",
"build:all": "run-s compile package:all",
"build:script": "node ./scripts/build-zip-files.js",
"build:zip": "run-s build:all build:script",
"generate-docs": "./node_modules/.bin/typedoc --out docs ./src/ --options ./typedoc.json &>/dev/null",
"commit": "git cz",
"lint": "eslint . --ext .js,.ts",
"lint:fix": "eslint --fix ."
},
"bin": "bin.js",
"author": "OSTEP",
"contributors": [
"Miguel Roncancio (https://github.com/miggs125)",
"Pouya Oftadeh (https://github.com/poftadeh)"
],
"license": "MIT",
"pkg": {
"assets": [
"./node_modules/vm2",
"./node_modules/@types",
"./node_modules/typescript/lib/*.d.ts",
"./src/**/*.ts",
"./tsconfig.json"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}