forked from emberjs/babel-plugin-ember-template-compilation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.3 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
{
"name": "babel-plugin-ember-template-compilation",
"version": "2.2.0",
"description": "Babel implementation of Ember's low-level template-compilation API",
"repository": "https://github.com/emberjs/babel-plugin-ember-template-compilation",
"license": "MIT",
"author": "Edward Faulkner <edward@eaf4.com>",
"scripts": {
"prepare": "tsc",
"build": "tsc",
"pretest": "tsc",
"lint": "eslint --cache --ext .ts .",
"test": "jest",
"clean": "git clean -d -f -x src __tests__"
},
"jest": {
"testPathIgnorePatterns": [
"mock-precompile",
".*\\.ts"
]
},
"main": "src/node-main.js",
"exports": {
".": {
"browser": "./src/plugin.js",
"default": "./src/node-main.js"
},
"./browser": "./src/plugin.js",
"./node": "./src/node-main.js"
},
"files": [
"src/**/*.js",
"src/**/*.d.ts",
"src/**/*.js.map"
],
"dependencies": {
"@glimmer/syntax": "^0.84.3",
"babel-import-util": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-modules-amd": "^7.14.5",
"@babel/plugin-transform-template-literals": "^7.14.5",
"@babel/plugin-transform-unicode-escapes": "^7.14.5",
"@babel/traverse": "^7.14.5",
"content-tag": "^0.1.0",
"@types/babel__traverse": "^7.11.1",
"@types/jest": "^29.2.3",
"@types/sinon": "^10.0.13",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"code-equality-assertions": "^0.7.0",
"common-tags": "^1.8.0",
"ember-source": "^3.28.9",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^29.3.1",
"prettier": "^2.2.1",
"release-it": "^14.10.0",
"release-it-lerna-changelog": "^3.1.0",
"sinon": "^14.0.0",
"typescript": "^4.3.5"
},
"engines": {
"node": ">= 12.*"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
},
"volta": {
"node": "18.15.0",
"yarn": "1.22.19"
}
}