blob: 2e36a100979e37522fd946f2d08cc8bc2a46c2e9 [file] [log] [blame]
Samuel Shuert274a4d62023-12-01 15:04:55 -05001{
2 "name": "create-require",
3 "version": "1.1.1",
4 "description": "Polyfill for Node.js module.createRequire (<= v12.2.0)",
5 "repository": "nuxt-contrib/create-require",
6 "license": "MIT",
7 "contributors": [
8 {
9 "name": "Maƫl Nison",
10 "email": "nison.mael@gmail.com"
11 },
12 {
13 "name": "Paul Soporan",
14 "email": "paul.soporan@gmail.com"
15 },
16 {
17 "name": "Pooya Parsa",
18 "email": "pyapar@gmail.com"
19 }
20 ],
21 "main": "./create-require.js",
22 "types": "./create-require.d.ts",
23 "files": [
24 "create-require.js",
25 "create-require.d.ts"
26 ],
27 "scripts": {
28 "lint": "eslint .",
29 "release": "yarn test && standard-version && git push --follow-tags && npm publish",
30 "test:matrix": "tap --no-esm --no-timeout ./test/matrix.js",
31 "test": "yarn lint && yarn test:matrix"
32 },
33 "devDependencies": {
34 "@nuxtjs/eslint-config": "latest",
35 "eslint": "latest",
36 "tap": "latest",
37 "standard-version": "latest"
38 }
39}