forked from marsjaninzmarsa/polyfill-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.65 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "polyfill-library",
"version": "3.52.3",
"description": "A polyfill combinator",
"main": "lib/index.js",
"contributors": [
{
"name": "Jonathan Neal",
"email": "jonathantneal+github@gmail.com",
"url": "http://jonathantneal.com/"
},
{
"name": "FT Origami",
"email": "origami.support@ft.com",
"url": "https://origami.ft.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/financial-times/polyfill-library.git"
},
"bugs": {
"url": "https://github.com/financial-times/polyfill-library/issues"
},
"scripts": {
"lint": "eslint polyfills lib tasks test",
"clean": "rimraf ./polyfills/__dist",
"build": "npm run clean && node tasks/node/updatesources && node tasks/node/buildsources",
"fmt": "eslint . --fix",
"test-library": "npm run build && npm run test-node && npm run test-node-unit && npm run test-end-to-end",
"test-polyfills": "karma start",
"test-all-polyfills": "node ./test/polyfills/test-all-features.js",
"test-end-to-end": "mocha test/end-to-end/**/*.test.js",
"test-node": "mocha test/node/**/*.js",
"test-node-unit": "nyc mocha test/unit --recursive",
"test-node-coverage": "nyc check-coverage --lines 90 --branches 90 --functions 90",
"test-coverage": "nyc report --reporter=lcov",
"test": "npm run build && npm run test-node && npm run test-node-unit && npm run test-polyfills",
"prepublishOnly": "mv polyfills/__dist __dist && rimraf polyfills && mkdir polyfills && mv __dist polyfills/__dist",
"prepublish": "npm run build"
},
"license": "MIT",
"engines": {
"node": ">=8"
},
"dependencies": {
"@financial-times/polyfill-useragent-normaliser": "^1.7.0",
"@formatjs/intl-pluralrules": "^1.1.2",
"@formatjs/intl-relativetimeformat": "^3.0.2",
"@webcomponents/template": "^1.4.0",
"Base64": "^1.0.0",
"abort-controller": "^3.0.0",
"audio-context-polyfill": "^1.0.0",
"current-script-polyfill": "^1.0.0",
"diff": "4.0.2",
"event-source-polyfill": "^1.0.12",
"from2-string": "^1.1.0",
"glob": "^7.1.1",
"graceful-fs": "^4.1.10",
"html5shiv": "^3.7.3",
"intl": "^1.2.5",
"js-polyfills": "^0.1.40",
"json3": "^3.3.2",
"merge2": "^1.0.3",
"mkdirp": "^0.5.0",
"mnemonist": "^0.32.0",
"mutationobserver-shim": "^0.3.2",
"picturefill": "^3.0.1",
"resize-observer-polyfill": "^1.5.1",
"rimraf": "^3.0.0",
"smoothscroll-polyfill": "^0.4.4",
"spdx-licenses": "^1.0.0",
"stream-cache": "^0.0.2",
"stream-from-promise": "^1.0.0",
"stream-to-string": "^1.1.0",
"toposort": "^2.0.2",
"uglify-js": "^2.7.5",
"unorm": "^1.6.0",
"usertiming": "^0.1.8",
"web-animations-js": "^2.2.5",
"whatwg-fetch": "^3.0.0",
"wicg-inert": "^3.0.0",
"yaku": "0.19.3"
},
"devDependencies": {
"@iarna/toml": "^2.2.3",
"apicache": "^1.5.3",
"array.prototype.flatmap": "^1.2.1",
"browserstack": "1.5.3",
"browserstack-local": "^1.4.5",
"cli-color": "^2.0.0",
"dotenv": "^8.2.0",
"eslint": "^6.8.0",
"eslint-plugin-unicorn": "^17.2.0",
"execa": "^4.0.0",
"express": "^4.17.1",
"globby": "^11.0.0",
"handlebars": "^4.7.2",
"hard-rejection": "^2.1.0",
"karma": "^4.2.0",
"karma-browserstack-launcher": "^1.4.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-summary-optional-console-reporter": "^1.6.1",
"lodash": "^4.17.14",
"mocha": "^3.5.3",
"mockery": "^2.1.0",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"proclaim": "^3.6.0",
"sinon": "^9.0.0",
"webdriverio": "^5.18.6",
"yaml": "^1.1.0"
}
}