-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.38 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.38 KB
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
{
"name": "codesync",
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
},
"main": "./lib/codesync",
"version": "3.5.8",
"description": "Stream all code changes to the cloud, in real-time. Never lose code again - no commits needed.",
"icon": "https://codesync-images.s3.amazonaws.com/icon.png",
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/codesyncapp/codesync-atom"
},
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0",
"npm": "8.1.2",
"node": "16.13.2"
},
"dependencies": {
"aws-sdk": "^2.927.0",
"current-git-branch": "^1.1.0",
"dateformat": "^4.4.1",
"detect-port": "^1.3.0",
"diff-match-patch": "^1.0.5",
"express": "^4.17.1",
"form-data": "^4.0.0",
"ignore": "^5.1.8",
"isbinaryfile": "^4.0.8",
"js-yaml": "^3.14.1",
"node-fetch": "^2.6.7",
"proper-lockfile": "^4.1.2",
"run-parallel": "^1.2.0",
"untildify": "^4.0.0",
"walk": "^2.3.14",
"websocket": "^1.0.34"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.4",
"babel-jest": "^27.1.0",
"jest": "^27.1.0",
"jest-fetch-mock": "^3.0.3"
},
"scripts": {
"test": "jest"
},
"jest": {
"automock": false,
"collectCoverage": true,
"setupFiles": [
"./setupJest.js"
]
}
}