-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.08 KB
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": "^2.4.1",
"commander": "^2.19.0",
"esm": "^3.0.84",
"gift": "^0.10.2",
"inquirer": "^6.2.0",
"yabf": "^2.0.0"
},
"devDependencies": {
"@types/node": "^10.12.0",
"ava": "^0.25.0",
"eslint": "^5.7.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": "^13.1.0",
"rimraf": "^2.6.2",
"sinon": "^7.0.0"
}
}