-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
107 lines (107 loc) · 2.73 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
102
103
104
105
106
107
{
"name": "contribute-buddy",
"version": "2.0.0",
"description": "Interactive command line user interface for a guided tour through your project",
"repository": {
"type": "git",
"url": "https://github.com/smollweide/contribute-buddy.git"
},
"keywords": [
"cli",
"cliui",
"contribute",
"guided tour"
],
"author": "Simon Mollweide <simon.mollweide@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/smollweide/contribute-buddy/issues"
},
"homepage": "https://github.com/smollweide/contribute-buddy#readme",
"bin": "dist/index.js",
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
},
"files": [
"dist",
"LICENSE",
"README.md",
".contributebuddy"
],
"prettier": {
"useTabs": true,
"printWidth": 120,
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"semi": true
},
"jest": {
"collectCoverageFrom": [
"src/*.{js}",
"src/*/*.{js}",
"!src/index.js",
"!src/resolve/index.js",
"!src/resolve/resolve-dependency.js",
"!src/symbols/index.js"
],
"coverageThreshold": {
"global": {
"branches": 99,
"functions": 99,
"lines": 99,
"statements": 99
}
}
},
"babel": {
"presets": [
"@babel/preset-env"
]
},
"devDependencies": {
"@namics/eslint-config": "9.0.2",
"@babel/core": "7.11.6",
"@babel/cli": "7.11.6",
"@babel/preset-env": "7.12.1",
"cross-env": "7.0.2",
"eslint": "7.13.0",
"eslint-plugin-import": "2.22.1",
"jest": "26.6.3",
"npm-run-all": "4.1.5",
"prettier": "2.1.2",
"rimraf": "3.0.2"
},
"dependencies": {
"chalk": "2.4.1",
"commander": "2.15.1",
"execa": "0.10.0",
"glob": "7.1.0",
"inquirer": "5.2.0",
"left-pad": "1.3.0",
"make-dir": "1.3.0",
"marked": "1.2.3",
"marked-terminal": "4.1.0",
"opn": "5.4.0",
"os-homedir": "1.0.2",
"p-series": "1.1.0",
"string-length": "2.0.0"
},
"scripts": {
"qa": "npm-run-all prettier lint test build",
"start": "src/index.js run",
"prebuild": "rimraf dist",
"build": "babel --out-dir dist --ignore \"src/**/*.spec.js\" src",
"prepack": "rimraf contribute-buddy-0.0.0-semantically-released.tgz package",
"pack": "npm pack && open contribute-buddy-0.0.0-semantically-released.tgz",
"test": "cross-env NODE_ENV=test jest --coverage --env=node",
"test:dev": "cross-env NODE_ENV=test jest --watch --notify --env=node",
"test:single": "cross-env NODE_ENV=test jest",
"lint": "npm-run-all lint:*",
"lint:js": "eslint .",
"prettier": "prettier --write 'src/**/*.js' --config package.json"
}
}