-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.47 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "crusher-cli",
"version": "2.0.46",
"author": "Himanshu @himanshu-dixit",
"repository": "https://github.com/crusherdev/CLI",
"main": "index.js",
"engines": {
"node": ">=10.0.0"
},
"engineStrict": true,
"lint-staged": {
"{src,__mocks__,bin}/**/*.ts": [
"prettier --write",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "@commitlint/prompt"
}
},
"scripts": {
"build": "tsc",
"commit": "git-cz",
"format:check": "prettier --list-different '{src,__mocks__,bin}/**/*.ts'",
"format:write": "prettier --write '{src,__mocks__,bin}/**/*.ts'",
"start": "ts-node ./src/bin/index.ts",
"test": "jest",
"bump-version": "rjp package.json version $VERSION",
"test:coverage": "jest --coverage",
"report:coverage": "npm run test:coverage && codecov",
"semantic-release": "semantic-release",
"webpack": "webpack && node scripts/copyPackageJson.js",
"webpack:debug": "PACKAGE_NAME=crusher-debug yarn webpack"
},
"bin": {
"crusher-cli": "./src/bin/index.js"
},
"keywords": [],
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@commitlint/prompt": "^13.1.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.1",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.0.1",
"@types/node": "^16.9.4",
"axios": "^0.25.0",
"axios-mock-adapter": "^1.20.0",
"boxen": "^5.1.2",
"chalk": "^4.0.0",
"cli-ux": "^6.0.9",
"codecov": "^3.1.0",
"command-exists": "^1.2.9",
"commander": "^8.2.0",
"commitizen": "^4.2.4",
"copy-webpack-plugin": "^10.2.4",
"fastify": "^3.27.1",
"fs-extra": "^10.0.0",
"glob": "^7.2.0",
"husky": "^7.0.2",
"jest": "^27.2.0",
"jsonfile": "^6.1.0",
"lint-staged": "^11.1.2",
"localtunnel": "^2.0.2",
"nock": "^13.2.4",
"prettier": "^2.4.1",
"replace-json-property": "^1.4.1",
"semantic-release": "^18.0.0",
"strip-ansi": "^7.0.1",
"ts-jest": "^27.0.5",
"ts-loader": "^8.2.6",
"ts-node": "^10.2.1",
"typescript": "^4.4.3",
"webpack": "^4.2.0",
"webpack-cli": "^4.9.2"
}
}