-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1014 Bytes
/
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
{
"name": "@ticketplushq/arc-plugin-static-ip",
"version": "1.0.4",
"description": "This plugin allows setting a static outgoing IP in an architect project",
"main": "src/index.js",
"scripts": {
"test": "npm run lint && npm run coverage",
"test:unit": "cross-env tape 'test/unit/**/*-test.js' | tap-spec",
"coverage": "nyc --reporter=lcov --reporter=text npm run test:unit",
"lint": "eslint . --fix",
"rc": "npm version prerelease --preid RC"
},
"engines": {
"node": ">=16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ticketplushq/arc-plugin-static-ip.git"
},
"license": "Apache-2.0",
"dependencies": {
"@architect/utils": "^3.0.4"
},
"devDependencies": {
"@architect/eslint-config": "^2.0.1",
"@architect/inventory": "^3.3.2",
"cross-env": "^7.0.3",
"eslint": "^8.9.0",
"nyc": "^15.1.0",
"tap-spec": "^5.0.0",
"tape": "^5.5.2"
},
"eslintConfig": {
"extends": "@architect/eslint-config"
}
}