-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.76 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
{
"name": "syzer",
"version": "1.2.2",
"description": "Cli tool to update all npm dependencies at once",
"license": "MIT",
"bin": {
"syzer": "lib/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rocktimsaikia/syzer.git"
},
"author": {
"name": "Rocktim Saikia",
"email": "rocktimthedev@gmail.com",
"url": "https://rocktimsaikia.me"
},
"engines": {
"node": ">=10"
},
"files": [
"lib"
],
"keywords": [
"cli",
"update",
"dependencies",
"npm",
"syzer",
"update",
"packages"
],
"scripts": {
"start": "babel-node src/cli.js",
"clean": "rimraf lib",
"build": "babel src -d lib",
"test": "jest --verbose",
"lint": "eslint \"./**/*.js\"",
"lint:fix": "eslint --fix **/*.js",
"prepublishOnly": "yarn run lint && yarn run test && yarn run clean && yarn run build"
},
"dependencies": {
"@babel/runtime": "7.11.2",
"cli-table3": "0.6.0",
"colors": "1.4.0",
"detect-indent": "6.0.0",
"fs-extra": "9.0.1",
"lodash": "4.17.19",
"log-symbols": "4.0.0",
"meow": "7.0.1",
"ora": "4.1.0",
"pacote": "11.1.11"
},
"devDependencies": {
"@babel/cli": "7.10.5",
"@babel/core": "7.11.1",
"@babel/node": "7.10.5",
"@babel/plugin-transform-runtime": "7.11.0",
"@babel/preset-env": "7.11.0",
"@commitlint/cli": "9.1.1",
"@commitlint/config-conventional": "9.1.1",
"commitizen": "4.1.2",
"eslint": "7.6.0",
"eslint-config-airbnb-base": "14.2.0",
"eslint-config-prettier": "6.11.0",
"eslint-plugin-import": "2.22.0",
"eslint-plugin-jest": "23.20.0",
"eslint-plugin-prettier": "3.1.4",
"husky": "4.2.5",
"jest": "26.3.0",
"prettier": "2.0.5",
"rimraf": "3.0.2"
}
}