forked from ember-template-lint/ember-template-lint
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.2 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
{
"name": "ember-template-lint",
"version": "1.1.0",
"description": "Lint your templates.",
"keywords": [],
"homepage": "https://github.com/rwjblue/ember-template-lint",
"bugs": {
"url": "https://github.com/rwjblue/ember-template-lint/issues"
},
"license": "MIT",
"author": "Robert Jackson <[email protected]>",
"main": "lib/index.js",
"bin": "./bin/ember-template-lint.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/rwjblue/ember-template-lint.git"
},
"scripts": {
"changelog": "lerna-changelog",
"lint:js": "eslint .",
"test": "mocha"
},
"dependencies": {
"@glimmer/compiler": "^0.38.5-alpha.1",
"chalk": "^2.0.0",
"globby": "^9.0.0",
"minimatch": "^3.0.4",
"resolve": "^1.1.3",
"strip-bom": "^3.0.0"
},
"devDependencies": {
"chai": "^4.0.0",
"common-tags": "^1.8.0",
"eslint": "^5.2.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.1",
"lerna-changelog": "^0.8.2",
"mocha": "^6.0.0",
"mocha-only-detector": "^1.0.0",
"prettier": "^1.15.3",
"testem": "^2.0.0"
},
"engines": {
"node": "6.* || 8.* || >= 10.*"
}
}