This repository has been archived by the owner on Feb 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
110 lines (110 loc) · 2.98 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
{
"name": "ember-cli-checkup",
"version": "0.0.2",
"description": "The default blueprint for ember-cli addons.",
"keywords": [
"ember-addon"
],
"repository": "https://github.com/scalvert/ember-cli-checkup.git",
"license": "MIT",
"author": "scalvert <[email protected]>",
"directories": {
"doc": "doc",
"test": "tests"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"clean": "rm -rf lib/*",
"lint": "eslint --ext js,ts .",
"prepublishOnly": "yarn build",
"postpublish": "yarn clean",
"test": "yarn build && qunit lib/tests && yarn clean",
"test:debug": "yarn build && node --inspect-brk=1337 node_modules/.bin/qunit lib/tests",
"test:dev": "yarn build && qunit lib/tests"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": [
"eslint --ext js,ts . --fix"
]
},
"dependencies": {
"@glimmer/reference": "^0.47.0",
"@glimmer/runtime": "^0.47.0",
"@glimmer/syntax": "^0.47.0",
"@glimmer/validator": "^0.47.0",
"@simple-dom/interface": "^1.4.0",
"capitalize": "^2.0.1",
"chalk": "^2.4.2",
"cli-table3": "^0.5.1",
"columnify": "^1.5.4",
"ember-template-recast": "^4.0.0",
"globby": "^11.0.0",
"ora": "^4.0.3",
"p-map": "^3.0.0"
},
"devDependencies": {
"@babel/traverse": "^7.7.4",
"@babel/types": "7.8.3",
"@ember/optional-features": "^1.3.0",
"@types/babel__traverse": "^7.0.7",
"@types/capitalize": "^1.0.1",
"@types/chalk": "^2.2.0",
"@types/console-ui": "^2.2.3",
"@types/ember": "^3.1.1",
"@types/ember-test-helpers": "^1.0.6",
"@types/node": "^13.5.0",
"@types/qunit": "^2.5.4",
"@types/resolve": "^1.14.0",
"@types/rsvp": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^1.11.0",
"@typescript-eslint/parser": "^1.11.0",
"ember-cli": "^3.14.0",
"ember-source": "~3.16.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-ember": "^7.7.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"fixturify-project": "^1.9.1",
"husky": "^4.2.1",
"lint-staged": "^10.0.2",
"loader.js": "^4.7.0",
"prettier": "^1.19.1",
"qunit": "^2.9.3",
"qunit-dom": "^0.9.2",
"release-it": "^12.2.1",
"release-it-lerna-changelog": "^1.0.3",
"ts-node": "^8.5.4",
"typescript": "^3.7.3",
"typescript-require": "^0.2.10"
},
"engines": {
"node": "10.* || >= 12.*"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"ember-addon": {
"configPath": "tests/dummy/config"
},
"release-it": {
"plugins": {
"release-it-lerna-changelog": {
"infile": "CHANGELOG.md"
}
},
"git": {
"tagName": "v${version}",
"changelog": "git log --pretty=format:\"* %s (%h)\" --no-merges --perl-regexp --author=\"^((?!dependabot-preview).*)$\" ${latestTag}...HEAD"
},
"github": {
"release": true
}
}
}