-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.17 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
{
"name": "@glimmer/test-helpers",
"version": "0.31.2",
"description": "Test helpers for Glimmer applications",
"repository": "https://github.com/glimmerjs/glimmer-test-helpers",
"license": "MIT",
"files": [
"dist"
],
"main": "dist/commonjs/es5/index.js",
"module": "dist/modules/es2017/index.js",
"types": "dist/types/index.d.ts",
"scripts": {
"test": "ember test",
"build": "ember build",
"prepublish": "npm run build",
"postpublish": "git push origin master --tags"
},
"devDependencies": {
"@glimmer/application-pipeline": "^0.11.2",
"@glimmer/build": "^0.9.1",
"@glimmer/component": "^0.9.1",
"@glimmer/inline-precompile": "^1.0.1",
"@types/qunit": "^2.0.31",
"broccoli-debug": "^0.6.5",
"broccoli-file-creator": "^2.1.1",
"broccoli-funnel": "^2.0.1",
"broccoli-merge-trees": "^2.0.0",
"ember-cli": "~3.4.3",
"typescript": "~2.6.0"
},
"peerDependencies": {
"@glimmer/component": ">= 0.9.1"
},
"resolutions": {
"@glimmer/application-pipeline/**/heimdalljs": "^0.2.6"
},
"publishConfig": {
"access": "public"
},
"ember-addon": {
"configPath": "tests/dummy/config"
}
}