-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.72 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
{
"name": "atom-package-manager",
"description": "Atom package manager",
"version": "2.6.5",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/atom/apm.git"
},
"bugs": {
"url": "https://github.com/atom/apm/issues"
},
"main": "./lib/apm.js",
"bin": {
"apm": "bin/apm"
},
"scripts": {
"check-version": "node script/check-version.js",
"clean:bin": "shx rm -rf bin/node_darwin_x64 bin/node.exe bin/node",
"clean:lib": "shx rm -rf lib && shx mkdir -p lib",
"clean": "npm run clean:lib && npm run clean:bin",
"lint": "coffeelint src spec",
"coffee": "coffee --compile --output lib src",
"build": "npm run clean:lib && npm run coffee",
"prepare": "npm run build",
"postinstall": "node script/postinstall.js",
"test": "npm run check-version && npm run lint && jasmine-focused --captureExceptions --coffee spec"
},
"dependencies": {
"@atom/plist": "0.4.4",
"asar-require": "0.3.0",
"async": "^3.2.0",
"colors": "~1.4.0",
"first-mate": "^7.4.3",
"fs-plus": "3.x",
"git-utils": "^5.7.2",
"glob": "^7.1.6",
"hosted-git-info": "^3.0.7",
"keytar": "^7.7.0",
"mv": "2.1.1",
"ncp": "~2.0.0",
"npm": "^6.14.9",
"open": "7.3.0",
"q": "~1.5.1",
"read": "~1.0.7",
"request": "^2.88.2",
"rimraf": "^3.0.2",
"season": "^6.0.2",
"semver": "^7.3.4",
"tar": "^6.0.5",
"temp": "^0.9.4",
"underscore-plus": "1.x",
"wordwrap": "1.0.0",
"wrench": "~1.5.1",
"yargs": "^3.32.0"
},
"devDependencies": {
"coffee-script": "^1.12.7",
"coffeelint": "<2.0",
"express": "^4.17.1",
"jasmine-focused": ">=1.0.7 <2.0",
"shx": "^0.3.3",
"node-gyp": "^5.1.1"
}
}