-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
66 lines (66 loc) · 1.34 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
{
"name": "codemod-imports-sort",
"description": "Sort ES6 imports by type",
"version": "0.5.1",
"license": "MIT",
"repository": "bfncs/codemod-imports-sort",
"main": "src/index.js",
"bin": "bin/codemod-imports-sort",
"files": [
"bin",
"dist"
],
"scripts": {
"build": "babel src -d dist",
"prepublish": "npm run build",
"start": "./bin/codemod-imports-sort --",
"test": "ava",
"test:watch": "ava --watch",
"test:coverage": "nyc ava",
"format": "prettier --write src/**/*.{js,jsx,ts,tsx,json,md}",
"precommit": "lint-staged"
},
"dependencies": {
"app-root-path": "^2.0.1",
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.3.3",
"is-builtin-module": "^1.0.0",
"jscodeshift": "^0.3.30",
"nomnom": "^1.8.1"
},
"devDependencies": {
"ava": "^0.19.0",
"husky": "^0.14.3",
"jscodeshift-ava-tester": "^1.1.1",
"lint-staged": "^7.0.5",
"nyc": "^10.2.0",
"prettier": "^1.12.1"
},
"ava": {
"files": [
"src/**/*.test.js"
],
"require": [
"babel-register"
]
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
],
"@ava/stage-4"
]
},
"lint-staged": {
"*.{js,css,md}": [
"prettier --write",
"git add"
]
}
}