-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
72 lines (72 loc) · 1.89 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
{
"name": "babel-plugin-danger-remove-unused-import",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"clean": "rm -rf lib/*",
"babel": "babel src --out-dir lib -D",
"dev": "npm run babel -- -w",
"prepublish": "npm run clean; npm run babel",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"version": "npm run changelog"
},
"files": [
"lib",
"index.js"
],
"keywords": [
"imcuttle",
"shake",
"remove-unused",
"babel-plugin"
],
"engines": {
"node": ">=7"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@moyuyc/husky": "^1.1.1",
"@types/jest": "^23.3.9",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-classes": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"conventional-changelog-cli": "^2.0.11",
"jest": "^23.6.0",
"prettier": "^1.14.3",
"pretty-quick": "^1.8.0"
},
"directories": {
"lib": "lib",
"test": "test"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/imcuttle/babel-plugin-danger-remove-unused-import.git"
},
"bugs": {
"url": "https://github.com/imcuttle/babel-plugin-danger-remove-unused-import/issues"
},
"homepage": "https://github.com/imcuttle/babel-plugin-danger-remove-unused-import#readme",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
}
}