-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
101 lines (101 loc) · 1.97 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
{
"name": "nvx",
"description": "Run commands on any specified Node version, or as defined in .travis.yml or circle.yml",
"license": "ISC",
"author": "Buster Collings <busterc@gmail.com> (https://about.me/buster)",
"repository": "busterc/nvx",
"version": "1.0.7",
"main": "lib/index.js",
"bin": {
"nvx": "lib/cli.js",
"nvx-test": "lib/cli-test.js",
"nvxt": "lib/cli-test.js"
},
"files": [
"lib"
],
"scripts": {
"precommit": "lint-staged",
"pretest": "eslint .",
"test": "jest --coverage --detectOpenHandles"
},
"dependencies": {
"execa": "^4.0.0",
"meow": "^6.0.0",
"p-map-series": "^2.1.0",
"promise.prototype.finally": "^3.1.2",
"travis-or-circle": "^1.0.2"
},
"devDependencies": {
"assert-dotenv": "^3.0.0",
"coveralls": "^3.0.9",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.0",
"eslint-config-xo": "^0.27.2",
"eslint-plugin-json": "^2.0.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^4.2.1",
"jest": "^25.1.0",
"jest-cli": "^25.1.0",
"lint-staged": "^10.0.7",
"prettier": "^1.19.1",
"prettier-package-json": "^2.1.3"
},
"keywords": [
"circle",
"circle-ci",
"exec",
"n",
"node",
"npx",
"nve",
"nvm",
"nvm-test",
"tav",
"test",
"testen",
"testing",
"tests",
"travis",
"travis-ci",
"version",
"versions"
],
"eslintConfig": {
"extends": [
"xo",
"prettier"
],
"env": {
"jest": true,
"node": true
},
"rules": {
"prettier/prettier": "error"
},
"plugins": [
"prettier",
"json"
]
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"__tests__"
]
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
],
"package.json": [
"prettier-package-json --write",
"git add"
]
}
}