-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.78 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.78 KB
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
{
"name": "jscodeshift-build-import-list",
"version": "0.0.0-development",
"description": "build a list of all files and dependencies transitively imported by starting file(s)",
"main": "index.js",
"author": "Andy Edwards",
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"lint": "eslint *.js test --cache",
"lint:fix": "eslint --fix *.js test --cache",
"prettier": "prettier --write *.js 'test/**/*.js' *.json *.md",
"prettier:check": "prettier --list-different *.js 'test/**/*.js' *.json *.md",
"test": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha $npm_package_config_mocha",
"test:watch": "cross-env NODE_ENV=test mocha --watch $npm_package_config_mocha",
"test:debug": "cross-env NODE_ENV=test mocha --inspect-brk $npm_package_config_mocha",
"codecov": "nyc report --reporter=text-lcov > coverage.lcov; codecov",
"prepublishOnly": "npm run lint && npm test",
"open:coverage": "open coverage/lcov-report/index.html",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $GIT_PARAMS",
"pre-commit": "lint-staged && npm run lint",
"pre-push": "npm test"
}
},
"lint-staged": {
"*.{js,json,css,md}": [
"prettier --write"
]
},
"config": {
"mocha": "test/configure.js 'test/*.js'",
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
},
"commitlint": {
"extends": [
"@jedwards1211/commitlint-config"
]
},
"nyc": {
"include": [
"*.js"
],
"exclude": [
"commitlint.config.js"
]
},
"repository": {
"type": "git",
"url": "https://github.com/codemodsquad/jscodeshift-build-import-list.git"
},
"keywords": [
"jscodeshift"
],
"bugs": {
"url": "https://github.com/codemodsquad/jscodeshift-build-import-list/issues"
},
"homepage": "https://github.com/codemodsquad/jscodeshift-build-import-list#readme",
"devDependencies": {
"@commitlint/cli": "^13.2.0",
"@commitlint/config-conventional": "^13.2.0",
"@jedwards1211/commitlint-config": "^1.0.2",
"@jedwards1211/eslint-config": "^2.0.2",
"chai": "^4.3.4",
"codecov": "^3.8.3",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"mocha": "^9.1.2",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"prettier-eslint": "^13.0.0",
"semantic-release": "^18.0.0"
},
"dependencies": {
"@babel/core": "^7.16.0",
"babel-parse-wild-code": "^1.1.1",
"es6-promisify": "^6.0.0",
"fs-extra": "^7.0.0",
"glob": "^7.1.3",
"jscodeshift": "^0.13.0",
"resolve": "^1.17.0"
}
}