forked from jasongin/nvs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 1.72 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
{
"name": "nvs",
"version": "1.6.0",
"description": "Node Version Switcher",
"main": "lib/index.js",
"scripts": {
"test": "ava --verbose --serial test/modules/* test/cli/*",
"test-cli": "ava --verbose --serial test/cli/*",
"test-modules": "ava --verbose --serial test/modules/*",
"coverage": "nyc --all ava --serial test/modules/*",
"lint": "eslint lib test",
"ts-check": "tsc"
},
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jasongin/nvs"
},
"devDependencies": {
"@types/node": "^13.7.7",
"ava": "^3.10.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"nyc": "^15.1.0",
"rewire": "^2.5.2",
"typescript": "^3.7.2"
},
"ava": {
"files": [
"test/**/*Tests.js"
],
"timeout": "10m"
},
"nyc": {
"include": [
"lib/**"
],
"reporter": [
"text",
"html"
]
},
"eslintConfig": {
"env": {
"node": true,
"es6": true
},
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "script"
},
"extends": "standard",
"plugins": [
"standard",
"promise"
],
"rules": {
"no-tabs": "off",
"no-multi-spaces": [
"error",
{
"ignoreEOLComments": true
}
],
"indent": [
"error",
"tab",
{
"SwitchCase": 1
}
],
"semi": [
"error",
"always"
],
"space-before-function-paren": [
"error",
{
"anonymous": "always",
"named": "never"
}
],
"comma-dangle": [
"error",
"always-multiline"
],
"strict": [
"error",
"global"
],
"no-var": "error"
}
},
"dependencies": {}
}