UNPKG

3.65 kBJSONView Raw
1{
2 "name": "ember-auto-import",
3 "version": "2.7.4",
4 "description": "Zero-config import from NPM packages",
5 "keywords": [
6 "ember-addon",
7 "import",
8 "npm",
9 "webpack"
10 ],
11 "license": "MIT",
12 "author": "Edward Faulkner <edward@eaf4.com>",
13 "directories": {
14 "doc": "doc",
15 "test": "tests"
16 },
17 "main": "js/index.js",
18 "repository": {
19 "type": "git",
20 "url": "https://github.com/ef4/ember-auto-import",
21 "directory": "packages/ember-auto-import"
22 },
23 "scripts": {
24 "compile": "tsc",
25 "clean": "git clean -x -f",
26 "build": "ember build --environment=production",
27 "lint": "npm-run-all --aggregate-output --continue-on-error --parallel \"lint:!(fix)\"",
28 "lint:fix": "npm-run-all --aggregate-output --continue-on-error --parallel lint:*:fix",
29 "lint:hbs:fix": "ember-template-lint . --fix",
30 "lint:js:fix": "eslint . --fix",
31 "start": "ember serve",
32 "test:node": "qunit js/tests",
33 "prepare": "tsc"
34 },
35 "dependencies": {
36 "@babel/core": "^7.16.7",
37 "@babel/plugin-proposal-class-properties": "^7.16.7",
38 "@babel/plugin-proposal-decorators": "^7.16.7",
39 "@babel/plugin-proposal-private-methods": "^7.16.7",
40 "@babel/plugin-transform-class-static-block": "^7.16.7",
41 "@babel/preset-env": "^7.16.7",
42 "@embroider/macros": "^1.0.0",
43 "@embroider/shared-internals": "^2.0.0",
44 "babel-loader": "^8.0.6",
45 "babel-plugin-ember-modules-api-polyfill": "^3.5.0",
46 "babel-plugin-ember-template-compilation": "^2.0.1",
47 "babel-plugin-htmlbars-inline-precompile": "^5.2.1",
48 "babel-plugin-syntax-dynamic-import": "^6.18.0",
49 "broccoli-debug": "^0.6.4",
50 "broccoli-funnel": "^3.0.8",
51 "broccoli-merge-trees": "^4.2.0",
52 "broccoli-plugin": "^4.0.0",
53 "broccoli-source": "^3.0.0",
54 "css-loader": "^5.2.0",
55 "debug": "^4.3.1",
56 "fs-extra": "^10.0.0",
57 "fs-tree-diff": "^2.0.0",
58 "handlebars": "^4.3.1",
59 "js-string-escape": "^1.0.1",
60 "lodash": "^4.17.19",
61 "mini-css-extract-plugin": "^2.5.2",
62 "minimatch": "^3.0.0",
63 "parse5": "^6.0.1",
64 "resolve": "^1.20.0",
65 "resolve-package-path": "^4.0.3",
66 "semver": "^7.3.4",
67 "style-loader": "^2.0.0",
68 "typescript-memoize": "^1.0.0-alpha.3",
69 "walk-sync": "^3.0.0"
70 },
71 "devDependencies": {
72 "@types/babel__core": "^7.0.4",
73 "@types/babel__generator": "^7.0.1",
74 "@types/babel__template": "^7.0.1",
75 "@types/babel__traverse": "^7.0.3",
76 "@types/debug": "^0.0.31",
77 "@types/fs-extra": "^5.0.4",
78 "@types/js-string-escape": "^1.0.0",
79 "@types/jsdom": "^12.2.3",
80 "@types/lodash": "^4.14.110",
81 "@types/node": "^10.7.1",
82 "@types/parse5": "^6.0.0",
83 "@types/pkg-up": "^2.0.0",
84 "@types/qunit": "^2.11.1",
85 "@types/resolve": "^0.0.8",
86 "@types/semver": "^7.3.4",
87 "@types/webpack": "^5.28.0",
88 "babel-eslint": "^10.1.0",
89 "broccoli-node-api": "^1.7.0",
90 "eslint": "^7.32.0",
91 "eslint-config-prettier": "^8.3.0",
92 "eslint-plugin-node": "^11.1.0",
93 "eslint-plugin-prettier": "^4.0.0",
94 "eslint-plugin-qunit": "^7.2.0",
95 "npm-run-all": "^4.1.5",
96 "prettier": "^2.5.1",
97 "quick-temp": "^0.1.8",
98 "qunit": "^2.17.2",
99 "qunit-assertions-extra": "^0.8.5",
100 "typescript": "4.3.5"
101 },
102 "engines": {
103 "node": "12.* || 14.* || >= 16"
104 },
105 "ember": {
106 "edition": "octane"
107 },
108 "ember-addon": {
109 "configPath": "tests/dummy/config",
110 "before": [
111 "broccoli-asset-rev",
112 "@embroider/macros"
113 ],
114 "after": [
115 "ember-cli-babel",
116 "ember-cli-coffeescript",
117 "ember-cli-typescript"
118 ]
119 },
120 "volta": {
121 "node": "16.20.1"
122 }
123}