-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.5 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
{
"name": "import-sort-style-module-alias",
"version": "1.0.4",
"author": "Fernando Maia <[email protected]> (https://github.com/fsmaia)",
"repository": {
"type": "git",
"url": "https://github.com/fsmaia/import-sort-style-module-alias"
},
"license": "ISC",
"description": "An import-sort style that groups and sorts by module with relative aliases support",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"commit": "npx git-cz",
"lint": "eslint . --ext=ts,js",
"prepare": "npm run build",
"prepublish": "npm test && npm run lint",
"semantic-release": "semantic-release",
"test": "echo 'No tests yet' && exit 0",
"watch": "tsc -w"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@types/node": "^13.13.2",
"@typescript-eslint/eslint-plugin": "^2.29.0",
"@typescript-eslint/parser": "^2.29.0",
"commitizen": "^4.0.4",
"cz-conventional-changelog": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"husky": "^4.2.5",
"import-sort-parser": "^6.0.0",
"import-sort-style": "^6.0.0",
"lint-staged": "^10.1.7",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"semantic-release": "^19.0.5",
"ts-node": "^8.9.0",
"typescript": "^3.8.3"
},
"dependencies": {},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}