-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.76 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
{
"name": "glimmer-compiler-webpack-plugin",
"version": "0.6.1",
"description": "webpack plugin for compiling Glimmer components",
"main": "dist/src/index.js",
"scripts": {
"test": "mocha",
"prepare": "tsc"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tomdale/glimmer-compiler-webpack-plugin.git"
},
"keywords": [
"webpack",
"loader",
"glimmer",
"glimmer.js"
],
"author": "Tom Dale <tom@tomdale.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tomdale/glimmer-compiler-webpack-plugin/issues"
},
"homepage": "https://github.com/tomdale/glimmer-compiler-webpack-plugin#readme",
"devDependencies": {
"@glimmer/ssr": "^0.9.0-alpha.9",
"@types/babel-core": "^6.25.1",
"@types/babel-traverse": "^6.25.2",
"@types/babylon": "^6.16.2",
"@types/chai": "^4.0.4",
"@types/debug": "^0.0.30",
"@types/mocha": "^2.2.42",
"@types/node": "^8.0.24",
"@types/resolve": "^0.0.4",
"@types/tmp": "^0.0.33",
"@types/webpack": "^3.0.10",
"@types/webpack-sources": "^0.1.3",
"chai": "^4.1.1",
"debug": "^3.1.0",
"mocha": "^3.5.0",
"tmp": "^0.0.33",
"ts-node": "^3.3.0",
"typescript": "^2.4.2",
"webpack": "^3.5.5"
},
"dependencies": {
"@babel/core": "^7.0.0-beta.32",
"@glimmer/compiler-delegates": "^0.9.0-alpha.12",
"babel-core": "^7.0.0-alpha.19",
"babel-plugin-syntax-class-properties": "^7.0.0-alpha.19",
"babel-plugin-syntax-decorators": "7.0.0-alpha.19",
"babel-plugin-syntax-typescript": "^7.0.0-alpha.19",
"babel-traverse": "^7.0.0-alpha.19",
"babel-types": "^7.0.0-alpha.19",
"glimmer-analyzer": "^0.3.1",
"resolve": "^1.4.0",
"webpack-sources": "^1.0.1"
}
}