-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.35 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
{
"name": "setup-airbnb-config",
"version": "1.1.0",
"description": "Bootstraps your VSCode project with Airbnb's eslint configuration together with Prettier through a CLI.",
"main": "build/main.js",
"files": [
"bin",
"build",
"templates",
"rollup.config.js"
],
"bin": {
"@christopherafbjur/setup-airbnb-config": "bin/setup-airbnb-config",
"setup-airbnb-config": "bin/setup-airbnb-config"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"prepack": "npm run build",
"test": "echo \"No test specified\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/christopherafbjur/setup-airbnb-config.git"
},
"bugs": {
"url": "https://github.com/christopherafbjur/setup-airbnb-config/issues"
},
"homepage": "https://github.com/christopherafbjur/setup-airbnb-config#readme",
"keywords": [
"cli",
"setup-airbnb-config",
"prettier",
"eslint",
"airbnb"
],
"author": "Christopher Af Bjur",
"license": "MIT",
"dependencies": {
"arg": "^5.0.0",
"chalk": "^4.1.1",
"esm": "^3.2.25",
"execa": "^5.0.0",
"inquirer": "^8.1.0",
"listr": "^0.14.3",
"ncp": "^2.0.0",
"path-parse": "^1.0.7"
},
"devDependencies": {
"rollup": "^2.50.6",
"rollup-plugin-terser": "^7.0.2"
}
}