-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
48 lines (48 loc) · 1.33 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
{
"name": "ensure-node-env",
"version": "2.1.0",
"description": "A script that helps ensure you have the correct node & npm versions installed in your environment.",
"main": "./dist/index.js",
"bin": {
"ensure-node-env": "./dist/cli.js"
},
"files": [
"dist"
],
"engines": {
"node": "^16.14.2 || ^18.14.1",
"npm": "^8.5.0 || ^9.3.1 || ^10.7.0"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "rollup --config",
"pretest": "npm run lint && npm run build",
"test": "node dist/index.js && ./test_curl.sh",
"snyk-protect": "snyk-protect",
"prepublish": "npm run snyk-protect"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Skyscanner/ensure-node-env.git"
},
"author": "Backpack <backpack@skyscanner.net>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Skyscanner/ensure-node-env/issues"
},
"homepage": "https://github.com/Skyscanner/ensure-node-env#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-node-resolve": "^13.1.3",
"@skyscanner/eslint-config-skyscanner": "^12.0.0",
"@snyk/protect": "^1.895.0",
"eslint_d": "^11.1.1",
"rollup": "^2.70.1",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"semver": "^6.3.0"
},
"snyk": true
}