-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.81 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
{
"name": "import-sort-style-ember",
"version": "0.2.0",
"description": "Group and sort imports by module, specifically `@ember`-scoped modules",
"homepage": "https://github.com/stormwarning/import-sort-style-ember",
"author": "Jeff <rustyangel@gmail.com> (https://tidaltheory.co)",
"dependencies": {
"import-sort-style": "^4.2.0"
},
"devDependencies": {
"@types/node": "^8",
"@zazen/eslint-config": "^0.1.0",
"husky": "^0.14.3",
"lint-staged": "~4.3.0",
"microbundle": "^0.4.3",
"npm-run-all": "~4.1.2",
"remark-cli": "~4.0.0",
"remark-contributors": "~3.1.0",
"remark-github": "~7.0.2",
"remark-preset-lint-markdown-style-guide": "~2.1.1",
"remark-toc": "~4.0.1",
"ts-node": "^3.0.6",
"typescript": "^2.7.1"
},
"keywords": [
"ember",
"import-sort-style"
],
"license": "MIT",
"lint-staged": {
"*.{js|json}": [
"prettier-eslint --list-different",
"git add"
]
},
"main": "dist/index.js",
"remarkConfig": {
"plugins": [
"preset-lint-markdown-style-guide",
[
"lint-maximum-line-length",
false
],
[
"lint-list-item-spacing",
false
],
"contributors",
"github",
"toc"
],
"settings": {
"commonmark": true,
"bullet": "-",
"listItemIndent": 1,
"rule": "-",
"ruleSpaces": false,
"strong": "*",
"emphasis": "*"
}
},
"repository": "stormwarning/import-sort-style-ember",
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"lint": "npm-run-all lint:*",
"lint:scripts": "prettier-eslint '**/*.js' --write --list-different",
"lint:markdown": "remark . -qo",
"precommit": "lint-staged && npm test",
"prepublish": "npm run build",
"test": "npm run lint"
}
}