-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.83 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.83 KB
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
{
"name": "babel-plugin-ember-data-packages-polyfill",
"version": "0.1.1",
"description": "Polyfill for EmberData Packages API.",
"keywords": [
"babel-plugin"
],
"homepage": "https://github.com/ember-data/babel-plugin-ember-data-packages-polyfill#readme",
"bugs": {
"url": "https://github.com/ember-data/babel-plugin-ember-packages-polyfill/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ember-data/babel-plugin-ember-data-packages-polyfill.git"
},
"license": "MIT",
"author": "Chris Thoburn <runspired@gmail.com>",
"contributors": [
"Robert Jackson <me@rwjblue.com> (https://www.rwjblue.com)"
],
"main": "src/index.js",
"directories": {
"test": "tests"
},
"scripts": {
"changelog": "lerna-changelog",
"start": "qunit --watch tests/**/*-test.js",
"test": "qunit tests/**/*-test.js"
},
"dependencies": {
"@ember-data/rfc395-data": "^0.0.4"
},
"devDependencies": {
"@babel/core": "^7.8.3",
"@babel/plugin-transform-modules-amd": "^7.8.3",
"lerna-changelog": "^0.8.3",
"qunit": "^2.9.3",
"qunit-eslint": "^2.0.0"
},
"engines": {
"node": "6.* || 8.* || 10.* || >= 12.*"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"changelog": {
"repo": "ember-data/babel-plugin-ember-data-packages-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"
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
}
},
"volta": {
"node": "13.6.0",
"yarn": "1.21.1"
}
}