-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 994 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 994 Bytes
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
{
"name": "usyncit",
"version": "0.2.0",
"description": "Sync subdirectories of a monorepo with external repos",
"author": "Chris Deacy <deacy@uber.com>",
"license": "MIT",
"main": "index.js",
"engines": {
"node": ">=8.5.0"
},
"files": [
"index.js",
"lib"
],
"scripts": {
"lint": "eslint .",
"test": "jest",
"test-ci": "jest --coverage && .buildkite/codecov"
},
"jest": {
"coveragePathIgnorePatterns": [
"_test-utils.js"
],
"testEnvironment": "node"
},
"dependencies": {
"execa": "^2.0.3",
"fs-extra": "^8.1.0",
"just-pick": "^2.1.0",
"p-queue": "^6.1.0",
"pretty-ms": "^5.0.0",
"sanitize-filename": "1.6.1"
},
"devDependencies": {
"@types/jest": "^24.0.17",
"eslint": "^6.1.0",
"eslint-plugin-prettier": "^3.1.0",
"expect": "^24.8.0",
"globby": "^10.0.1",
"jest": "^24.8.0",
"prettier": "^1.18.2"
},
"volta": {
"node": "10.16.3",
"yarn": "1.19.1"
}
}