-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.07 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
{
"name": "configfile",
"version": "0.3.1",
"description": "Personal config files manager",
"main": "index.js",
"repository": "github.com:Mindsers/configfile.git",
"author": "Mindsers <dev@nathanaelcherrier.com>",
"license": "Apache-2.0",
"config": {
"optionsFilePath": "~/.configfile"
},
"bin": {
"configfile": "./bin/configfile.js"
},
"scripts": {
"test:unit:coverage": "nyc yarn test:unit",
"test:unit": "ava tests/**/*.js",
"test:lint": "eslint bin src tests",
"test": "yarn test:lint && yarn test:unit:coverage"
},
"dependencies": {
"chalk": "4.1.0",
"commander": "7.0.0",
"esm": "3.2.25",
"gift": "0.10.2",
"inquirer": "7.3.3",
"yabf": "2.1.0"
},
"devDependencies": {
"@types/node": "11.15.44",
"ava": "3.15.0",
"eslint": "7.18.0",
"eslint-config-standard": "16.0.2",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.1.0",
"nyc": "15.1.0",
"rimraf": "3.0.2",
"sinon": "9.2.3"
}
}