-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.25 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
{
"name": "@comandeer/babel-plugin-banner",
"version": "5.0.0",
"description": "Simple Babel plugin to prepend comment to the beginning of transformed code.",
"main": "dist/babel-plugin-banner.js",
"jsnext:main": "dist/babel-plugin-banner.es2015.js",
"module": "dist/babel-plugin-banner.es2015.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "rlb",
"lint": "eslint src/**/*.js tests/*.js",
"pretest": "npm run lint",
"test": "nyc mocha tests/*.js --timeout 15000 --require @babel/register",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"version": "npm test && npm run build && git add -f dist/",
"postversion": "git rm -r --cached dist/ && git commit -m \"chore(dist): clean after release [ci skip]\" && git push origin && git push origin --tags"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Comandeer/babel-plugin-banner.git"
},
"keywords": [
"babel",
"plugin",
"banner"
],
"author": "Comandeer",
"license": "MIT",
"bugs": {
"url": "https://github.com/Comandeer/babel-plugin-banner/issues"
},
"homepage": "https://github.com/Comandeer/babel-plugin-banner#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitplease": {
"nohook": true,
"style": "angular",
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"build",
"ci",
"chore",
"revert"
],
"scope": "\\S+.*"
},
"nyc": {
"include": [
"src/**/*.js"
],
"exclude": [
"dist/**/*.js",
"tests/**/*.js"
]
},
"peerDependencies": {
"@babel/core": ">=7.0.0"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@babel/register": "^7.6.2",
"@comandeer/eslint-config": "^0.2.2",
"@comandeer/is-ci": "^2.0.0",
"@comandeer/rollup-lib-bundler": "^0.9.0",
"chai": "^4.2.0",
"codecov": "^3.6.1",
"commitplease": "^3.2.0",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.5.1",
"husky": "^3.0.9",
"mocha": "^6.2.2",
"nyc": "^14.1.1"
}
}