-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
80 lines (80 loc) · 2.02 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
{
"name": "babel-plugin-ember-modules-api-polyfill",
"version": "3.5.0",
"description": "Polyfill for Ember JS API.",
"keywords": [
"babel-plugin"
],
"homepage": "https://github.com/ember-cli/babel-plugin-ember-modules-api-polyfill#readme",
"bugs": {
"url": "https://github.com/ember-cli/babel-plugin-ember-modules-api-polyfill/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ember-cli/babel-plugin-ember-modules-api-polyfill.git"
},
"license": "MIT",
"author": "Robert Jackson <[email protected]>",
"main": "src/index.js",
"directories": {
"test": "tests"
},
"files": [
"src"
],
"scripts": {
"lint": "eslint .",
"start": "jest --watchAll",
"test": "jest"
},
"dependencies": {
"ember-rfc176-data": "^0.3.17"
},
"devDependencies": {
"@babel/core": "^7.14.8",
"@babel/plugin-proposal-decorators": "^7.14.5",
"@babel/plugin-transform-typescript": "^7.14.6",
"@babel/preset-env": "^7.14.8",
"babel-core": "^6.25.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^7.2.0",
"babel-plugin-istanbul": "^6.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^24.9.0",
"prettier": "^2.3.2",
"release-it": "^14.10.1",
"release-it-lerna-changelog": "^3.1.0"
},
"engines": {
"node": "6.* || 8.* || >= 10.*"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"changelog": {
"repo": "ember-cli/babel-plugin-ember-modules-api-polyfill",
"labels": {
"breaking": ":boom: Breaking Change",
"enhancement": ":rocket: Enhancement",
"bug": ":bug: Bug Fix",
"documentation": ":memo: Documentation",
"internal": ":house: Internal"
}
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md",
"launchEditor": true
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"tokenRef": "GITHUB_AUTH"
}
}
}