-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.38 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
{
"name": "@mrhenry/polyfill-library",
"version": "5.2.1",
"description": "A polyfill combinator",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/mrhenry/polyfill-library.git"
},
"bugs": {
"url": "https://github.com/mrhenry/polyfill-library/issues"
},
"workspaces": [
"polyfills/**/*"
],
"scripts": {
"lint": "eslint polyfills lib tasks test && tsc --noEmit",
"lint-config": "node tasks/lint-config/index.js",
"clean": "node tasks/clean",
"build": "npm run clean && node tasks/updatesources && npm run build-types && node tasks/buildsources/buildsources",
"build-types": "tsc lib/*.js --declaration --allowJs --emitDeclarationOnly --outDir lib",
"watch": "npm run clean && node tasks/updatesources && npm run build-types && node tasks/buildsources/watchsource",
"fmt": "eslint . --fix",
"test-end-to-end": "node --test 'test/end-to-end/**/*.test.js'",
"test-node": "node --test 'test/node/**/*.test.js'",
"test-unit": "node --test 'test/unit/**/*.test.js'",
"test": "node --test 'test/unit/**/*.test.js' && node --test 'test/node/**/*.test.js' && node --test 'test/end-to-end/**/*.test.js'",
"test-older-node": "node --test 'test/unit' && node --test 'test/node' && node --test 'test/end-to-end'",
"prepublishOnly": "npm run build",
"create-new-polyfill": "node ./tasks/create-new-polyfill.js",
"update-browserstack-list": "node ./tasks/updatebrowserstacklist.js"
},
"license": "MIT",
"engines": {
"node": ">=12"
},
"files": [
"/CHANGELOG.md",
"/LICENSE.md",
"/README.md",
"/SECURITY.md",
"/lib",
"/polyfills/__dist",
"/types"
],
"devDependencies": {
"@financial-times/polyfill-useragent-normaliser": "^2.0.1",
"@iarna/toml": "^2.2.5",
"apicache": "^1.6.3",
"browserstack": "1.6.1",
"browserstack-local": "^1.5.5",
"compression": "^1.7.4",
"diff": "^5.2.0",
"eslint": "^9.3.0",
"eslint-plugin-uncalled-iife": "^1.0.3",
"eslint-plugin-unicorn": "^53.0.0",
"express": "^4.17.3",
"glob": "^7.1.1",
"handlebars": "^4.7.2",
"hard-rejection": "^2.1.0",
"lodash": "^4.17.14",
"proclaim": "^3.6.0",
"semver": "^7.3.7",
"toposort": "^2.0.2",
"typescript": "^5.6.2",
"uglify-js": "^3.17.4",
"webdriverio": "^9.1.4"
},
"volta": {
"node": "22.3.0"
}
}