-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
87 lines (87 loc) · 2.12 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
{
"name": "booomstrapper",
"version": "0.13.0",
"description": "booomstrapper for easy Github repository and project creation",
"repository": "https://github.com/booom-studio/booomstrapper.git",
"main": "./lib/App.js",
"bin": {
"booom": "./lib/App.js"
},
"scripts": {
"lint": "eslint src",
"test": "ava",
"testWithCoverage": "nyc --all ava",
"babel:build": "babel src -d lib --delete-dir-on-start",
"babel:watch": "babel src -d lib --delete-dir-on-start -w"
},
"author": "[email protected]",
"license": "MIT",
"lint-staged": {
"src/**/*.{js,json}": [
"prettier --single-quote --write",
"git add"
]
},
"nyc": {
"check-coverage": true,
"lines": 40,
"statements": 40,
"functions": 40,
"branch": 40,
"include": [
"src/**/*.js"
],
"exclude": [
"src/**/*.test.js"
],
"all": true
},
"ava": {
"files": [
"src/**/*.test.js"
],
"sources": [
"src/**/*.js"
],
"require": [
"@babel/register"
]
},
"dependencies": {
"@babel/runtime": "7.0.0-beta.44",
"@octokit/rest": "^15.2.6",
"ajv": "^6.5.0",
"commander": "^2.15.1",
"fs-extra": "^5.0.0",
"inquirer": "^5.2.0",
"lodash": "^4.17.10",
"ora": "^2.0.0",
"os-tmpdir": "^1.0.2",
"read-pkg-up": "^3.0.0",
"rimraf": "^2.6.2",
"simple-git": "^1.92.0",
"winston": "^2.4.2",
"write-pkg": "^3.1.0"
},
"devDependencies": {
"@babel/cli": "7.0.0-beta.44",
"@babel/core": "7.0.0-beta.44",
"@babel/plugin-transform-runtime": "7.0.0-beta.44",
"@babel/preset-env": "7.0.0-beta.44",
"@babel/preset-stage-1": "7.0.0-beta.44",
"@babel/register": "^7.0.0-beta.46",
"ava": "1.0.0-beta.4",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.0.4",
"danger": "^3.7.15",
"danger-plugin-yarn": "^1.3.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"nyc": "^11.7.3",
"prettier": "^1.12.1"
}
}