-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.2 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
{
"name": "babel-plugin-transform-polyfills",
"version": "0.0.1-development",
"description": "Babel plugin to replace occurrences of language features which might not be supported with polyfills",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/skedify/babel-plugin-transform-polyfills.git"
},
"author": {
"name": "Skedify",
"email": "info@skedify.co",
"url": "https://www.skedify.me"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/skedify/babel-plugin-transform-polyfills/issues"
},
"homepage": "https://github.com/skedify/babel-plugin-transform-polyfills",
"files": [
"lib",
"polyfills"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run check-coverage"
}
},
"scripts": {
"prebuild": "npm run lint && rimraf lib",
"build": "babel src -d lib",
"test": "cross-env NODE_ENV=test jest",
"tdd": "npm run test -- --watch",
"lint": "eslint --ext .js src",
"format": "npm run lint -- --fix",
"check-coverage": "cross-env CI=true NODE_ENV=test jest --coverage",
"publish-coverage": "codecov",
"commit": "git-cz",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^7.6.0",
"babel-eslint": "^10.0.1",
"codecov": "^3.5.0",
"commitizen": "^4.0.3",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.16.0",
"eslint-plugin-better": "^0.1.5",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-require-in-package": "^1.0.3",
"husky": "^1.3.1",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"rimraf": "^2.6.3",
"semantic-release": "^15.13.24",
"travis-deploy-once": "^5.0.11"
},
"keywords": [
"babel-plugin"
],
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"es6-promise": "^4.2.8"
}
}