-
Notifications
You must be signed in to change notification settings - Fork 133
/
package.json
96 lines (96 loc) · 2.79 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
{
"name": "polyfill-library",
"version": "3.27.0",
"description": "A polyfill combinator",
"main": "lib/index.js",
"contributors": [
{
"name": "Jonathan Neal",
"email": "[email protected]",
"url": "http://jonathantneal.com/"
},
{
"name": "FT Origami",
"email": "[email protected]",
"url": "https://origami.ft.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/financial-times/polyfill-service.git"
},
"bugs": {
"url": "https://github.com/financial-times/polyfill-service/issues"
},
"scripts": {
"lint": "eslint polyfills/**/polyfill.js lib tasks test",
"clean": "rimraf ./polyfills/__dist",
"build": "npm run clean && node tasks/node/updatesources && node tasks/node/buildsources",
"fmt": "eslint . --fix",
"test-polyfills": "karma start",
"test-all-polyfills": "node ./test/polyfills/test-all-features.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",
"postinstall": "npm run build"
},
"license": "MIT",
"engines": {
"node": ">=8"
},
"dependencies": {
"Base64": "^1.0.0",
"array.of": "^0.1.1",
"audio-context-polyfill": "^1.0.0",
"babel-core": "^6.23.1",
"babel-preset-es2015": "^6.1.18",
"denodeify": "^1.2.1",
"diff": "1.4.0",
"event-source-polyfill": "^0.0.9",
"exists-sync": "0.0.4",
"from2-string": "^1.1.0",
"glob": "^7.1.1",
"graceful-fs": "^4.1.10",
"html5shiv": "^3.7.3",
"intersection-observer": "^0.4.1",
"intl": "^1.2.5",
"js-polyfills": "^0.1.40",
"json3": "^3.3.2",
"lazystream": "^1.0.0",
"lodash": "^4.17.4",
"lru-cache": "^4.0.2",
"merge2": "^1.0.3",
"mkdirp": "^0.5.0",
"mutationobserver-shim": "^0.3.2",
"picturefill": "^3.0.1",
"rimraf": "^2.6.2",
"semver": "^5.3.0",
"shuffle-array": "^1.0.1",
"stream-from-promise": "^1.0.0",
"stream-to-string": "^1.1.0",
"tsort": "0.0.1",
"uglify-js": "^2.7.5",
"useragent": "^2.1.12",
"usertiming": "^0.1.8",
"web-animations-js": "^2.2.5",
"whatwg-fetch": "^2.0.3",
"yaku": "0.18.6"
},
"devDependencies": {
"eslint": "^4.9.0",
"execa": "^1.0.0",
"globby": "^8.0.1",
"karma": "~3.0.0",
"karma-browserstack-launcher": "^1.3.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-summary-optional-console-reporter": "^1.6.1",
"mocha": "^3.5.3",
"mockery": "^1.7.0",
"nyc": "^10.0.0",
"proclaim": "^3.6.0",
"sinon": "^4.0.1"
}
}