-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
87 lines (87 loc) · 2.55 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": "@jaebradley/fruit",
"version": "0.0.0-development",
"description": "An opinionated rollup.js starting package generator",
"main": "build/index.js",
"bin": {
"fruit": "build/index.js"
},
"scripts": {
"build": "babel src/ -d build/ --ignore 'src/templates' --copy-files --include-dotfiles --delete-dir-on-start",
"codecov": "codecov",
"commitmsg": "commitlint -e $GIT_PARAMS",
"deploy": "npm run travis-deploy-once 'npm run semantic-release'",
"lint": "eslint --ext .js .",
"test": "jest src/ --coverage --passWithNoTests",
"prepare": "npm run build",
"semantic-commit": "commit",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"repository": {
"type": "git",
"url": "https://github.com/jaebradley/fruit.git"
},
"keywords": [
"rollup",
"cli"
],
"author": "jae.b.bradley@gmail.com",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jaebradley/fruit/issues"
},
"homepage": "https://github.com/jaebradley/fruit#readme",
"devDependencies": {
"@babel/cli": "^7.0.0-rc.1",
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0-rc.1",
"@babel/plugin-transform-async-to-generator": "^7.0.0-rc.1",
"@babel/plugin-transform-runtime": "^7.0.0-rc.1",
"@babel/preset-env": "^7.0.0-rc.1",
"@commitlint/cli": "^8.1.0",
"@commitlint/config-angular": "^8.1.0",
"@commitlint/prompt": "^8.1.0",
"@commitlint/prompt-cli": "^8.1.0",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^24.9.0",
"codecov": "^3.0.4",
"eslint": "^6.3.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2",
"husky": "^3.0.5",
"jest": "^24.9.0",
"semantic-release": "^15.9.6",
"travis-deploy-once": "^5.0.2"
},
"dependencies": {
"@babel/runtime": "^7.10.5",
"@octokit/rest": "^16.43.2",
"chalk": "^2.4.2",
"child-process-promise": "^2.2.1",
"commander": "^3.0.2",
"deepmerge": "^4.2.2",
"email-validator": "^2.0.4",
"fs-extra": "^8.1.0",
"globby": "^10.0.2",
"inquirer": "^7.3.2",
"is-json": "^2.0.1",
"is-online": "^8.4.0",
"is-semver": "^1.0.9",
"mustache": "^3.2.1",
"normalize-package-data": "^2.5.0",
"sort-package-json": "^1.44.0",
"untildify": "^4.0.0",
"validate-npm-package-name": "^3.0.0"
},
"jest": {
"testPathIgnorePatterns": [
"<rootDir>/build/",
"<rootDir>/node_modules/",
"<rootDir>/src/templates/"
]
}
}