forked from thom4parisot/polyfill-service-url-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.3 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
{
"name": "create-polyfill-service-url",
"bin": "./index.js",
"main": "./src/analyse.js",
"files": [
"index.js",
"src",
"README.md",
"CHANGELOG.md",
"LICENSE.md"
],
"scripts": {
"fix": "eslint . --fix",
"lint": "eslint .",
"test": "npm run lint && jest test --passWithNoTests",
"snyk-protect": "snyk protect",
"prepare": "npm run snyk-protect"
},
"devDependencies": {
"eslint": "^7.0.0",
"jest": "^26.0.0",
"tinysh": "^1.0.0"
},
"version": "2.0.4",
"dependencies": {
"@babel/core": "^7.16.0",
"@financial-times/js-features-analyser": "0.0.4",
"browserslist": "^4.17.6",
"execa": "^4.0.0",
"polyfill-library": "^3.108.0",
"semver": "^7.1.1",
"snyk": "^1.752.0",
"yargs": "^15.1.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Financial-Times/polyfill-service-url-builder.git"
},
"bugs": {
"url": "https://github.com/Financial-Times/polyfill-service-url-builder/issues"
},
"homepage": "https://github.com/Financial-Times/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.",
"snyk": true
}