-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
66 lines (66 loc) · 1.9 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
{
"name": "create-polyfill-service-url",
"bin": "./index.js",
"scripts": {
"commit": "git-cz",
"fix": "eslint . --fix",
"lint": "eslint .",
"test": "npm run lint && jest test --passWithNoTests",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/git": "^7.0.16",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.1.0",
"jest": "^24.8.0",
"semantic-release": "^15.13.18"
},
"version": "1.6.0",
"dependencies": {
"@babel/core": "^7.5.5",
"@financial-times/js-features-analyser": "0.0.4",
"execa": "^2.0.3",
"polyfill-library": "^3.37.0",
"yargs": "^13.3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/JakeChampion/polyfill-service-url-builder.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"package-lock.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]nn${nextRelease.notes}"
}
]
},
"bugs": {
"url": "https://github.com/JakeChampion/polyfill-service-url-builder/issues"
},
"homepage": "https://github.com/JakeChampion/polyfill-service-url-builder#readme",
"author": "Jake Champion",
"license": "MIT",
"description": "Analyse your JavaScript file and generate a polyfill.io URL based on all the features that are being used from within the JavaScript file."
}