UNPKG

1.43 kBJSONView Raw
1{
2 "name": "jiti",
3 "version": "0.1.13",
4 "description": "Runtime typescript and ESM support for Node.js (CommonJS)",
5 "repository": "nuxt-contrib/jiti",
6 "license": "MIT",
7 "main": "./index.js",
8 "types": "dist/jiti.d.ts",
9 "bin": "bin/jiti.js",
10 "files": [
11 "index.js",
12 "dist"
13 ],
14 "scripts": {
15 "build": "yarn clean && NODE_ENV=production yarn webpack",
16 "build:babel": "ncc build src/babel.ts -t -m -o dist/babel",
17 "clean": "rm -rf dist",
18 "dev": "yarn clean && yarn webpack --watch",
19 "lint": "eslint --ext .ts,.js .",
20 "release": "yarn test && yarn build && yarn standard-version && git push --follow-tags && npm publish",
21 "test": "yarn lint"
22 },
23 "devDependencies": {
24 "@babel/core": "^7.10.2",
25 "@babel/plugin-transform-modules-commonjs": "^7.10.1",
26 "@babel/plugin-transform-typescript": "^7.10.1",
27 "@babel/preset-typescript": "^7.10.1",
28 "@nuxtjs/eslint-config-typescript": "^2.0.0",
29 "@types/babel__core": "^7.1.8",
30 "@types/mkdirp": "^1.0.1",
31 "@types/node": "^14.0.13",
32 "@types/resolve": "^1.17.1",
33 "create-require": "^1.0.2",
34 "eslint": "^7.2.0",
35 "esm": "^3.2.25",
36 "mkdirp": "^1.0.4",
37 "resolve": "^1.17.0",
38 "standard-version": "^8.0.0",
39 "ts-loader": "^7.0.5",
40 "tslib": "^2.0.0",
41 "typescript": "^3.9.5",
42 "v8-compile-cache": "^2.1.1",
43 "webpack": "^5.0.0-beta.17",
44 "webpack-cli": "^3.3.11"
45 }
46}