-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.91 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
{
"name": "npm-modules-sync",
"version": "1.2.3",
"description": "Keep your global NPM packages in sync between machines.",
"repository": "riyadhalnur/npm-modules-sync",
"scripts": {
"test": "mocha -t 10000 tests/tests.js",
"format": "prettier --single-quote --write \"*.js\" \"tests/**/**.js\" \"src/*.js\"",
"precommit": "npm run flow && npm run lint && lint-staged",
"lint": "eslint src/**",
"flow": "flow check",
"prepublishOnly": "npm run build",
"build": "mkdir -p build && flow-remove-types src/ --out-dir build/",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec tests/tests.js -t 100000 && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"keywords": [
"npm",
"global",
"modules",
"sync",
"machines",
"computers"
],
"author": "Riyadh Al Nur <[email protected]> (https://verticalaxisbd.com/)",
"license": "MIT",
"engines": {
"node": ">=8"
},
"lint-staged": {
"*.{js}": [
"prettier --single-quote --write"
]
},
"bin": {
"npm-sync": "cli.js"
},
"preferGlobal": true,
"devDependencies": {
"@babel/eslint-parser": "7.17.0",
"chai": "4.2.0",
"chai-as-promised": "^7.1.1",
"coveralls": "3.1.0",
"eslint": "8.8.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-prettier": "4.0.0",
"flow-bin": "0.131.0",
"flow-remove-types": "2.131.0",
"husky": "^0.14.3",
"istanbul": "0.4.5",
"lint-staged": "10.1.2",
"mocha": "8.1.1",
"mocha-lcov-reporter": "^1.3.0",
"nock": "13.2.4",
"prettier": "2.5.1",
"sinon": "9.0.2"
},
"dependencies": {
"chalk": "5.0.0",
"conf": "10.1.1",
"execa": "6.0.0",
"gh-got": "9.0.0",
"listr": "0.14.3",
"meow": "10.1.2",
"node-emoji": "1.11.0",
"update-notifier": "5.1.0"
}
}