-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.24 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
{
"name": "artillery-engine-radius",
"version": "1.0.0",
"description": "Artillery.io engine for RADIUS",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint **/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arcesino/artillery-engine-radius.git"
},
"keywords": [
"artillery",
"engine",
"radius"
],
"author": "Ignacio Arces",
"license": "ISC",
"bugs": {
"url": "https://github.com/arcesino/artillery-engine-radius/issues"
},
"homepage": "https://github.com/arcesino/artillery-engine-radius#readme",
"dependencies": {
"artillery": "^1.6.1",
"async": "^3.2.0",
"debug": "^4.2.0",
"get-port": "^5.1.1",
"radclient": "arcesino/node-radclient"
},
"devDependencies": {
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"prettier": "2.1.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,md}": "prettier --write"
}
}