This repository has been archived by the owner on Oct 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
125 lines (125 loc) · 3.41 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "glimmer.js",
"version": "2.0.0-beta.21",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/glimmerjs/glimmer.js.git"
},
"license": "MIT",
"main": "dist/index.js",
"workspaces": [
"packages/@glimmer/*",
"packages/babel-plugins/@glimmer/*"
],
"scripts": {
"build": "bin/build.js",
"clean": "bin/clean.js",
"lint": "eslint . --cache --ext .js,.ts",
"problems": "tsc -p tsconfig.json --noEmit",
"start": "webpack-dev-server",
"test": "npm-run-all lint test:browsers test:babel-plugins test:types",
"test:babel-plugins": "yarn workspace @glimmer/babel-preset test",
"test:browsers": "testem ci",
"test:ember": "yarn workspace @glimmer/component ember try:one",
"test:types": "tsc --noEmit --project test/types && dtslint test/types",
"test:watch": "testem"
},
"browserslist": {
"production": [
"last 2 Edge versions",
"last 2 Chrome versions",
"last 2 Firefox versions",
"last 2 Safari versions"
],
"development": [
"last 1 Chrome version",
"last 1 Firefox version",
"last 1 Safari version"
]
},
"resolutions": {
"amd-name-resolver": "https://github.com/ember-cli/amd-name-resolver.git",
"ember-cli-lodash-subset": "2.0.1"
},
"devDependencies": {
"@babel/core": "^7.17.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"@types/qunit": "^2.9.1",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"babel-loader": "^8.1.0",
"dtslint": "^3.4.1",
"expect-type": "~0.13.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"fs-extra": "^9.0.0",
"glob": "^7.1.6",
"lerna-changelog": "^1.0.1",
"mkdirp": "^1.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.2",
"qunit": "^2.18.0",
"release-it": "^13.5.7",
"release-it-lerna-changelog": "^2.3.0",
"release-it-yarn-workspaces": "^1.4.0",
"rimraf": "^3.0.2",
"semver": "^7.1.3",
"testem": "^3.0.3",
"ts-loader": "^6.2.2",
"tsconfig-paths-webpack-plugin": "^3.2.0",
"tslib": "^1.11.1",
"typescript": "~4.2.3",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"changelog": {
"repo": "glimmerjs/glimmer.js",
"labels": {
"breaking": ":boom: Breaking Change",
"enhancement": ":rocket: Enhancement",
"bug": ":bug: Bug Fix",
"documentation": ":memo: Documentation",
"internal": ":house: Internal",
"deprecation": ":warning: Deprecation"
}
},
"release-it": {
"hooks": {
"after:bump": "node bin/build.js"
},
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
},
"release-it-yarn-workspaces": {
"additionalManifests": {
"dependencyUpdates": [
"packages/@glimmer/blueprint/files/package.json"
]
}
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
},
"npm": false
},
"volta": {
"node": "12.22.10",
"yarn": "1.22.4"
}
}