-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.35 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
{
"name": "atom-package-manager",
"description": "Atom package manager",
"version": "0.152.0",
"licenses": [
{
"type": "MIT",
"url": "http://github.com/atom/apm/raw/master/LICENSE.md"
}
],
"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": {
"prepublish": "grunt prepublish",
"install": "node ./script/download-node.js",
"test": "grunt test"
},
"dependencies": {
"optimist": "~0.4.0",
"async": "~0.2.8",
"underscore-plus": "1.x",
"temp": "~0.7.0",
"wrench": "~1.5.1",
"ncp": "~0.5.1",
"npm": "2.5.1",
"season": ">=5.0.5 <6.0",
"colors": "~0.6.1",
"wordwrap": "0.0.2",
"fs-plus": "2.x",
"keytar": ">=2.1 <3",
"read": "~1.0.5",
"q": "~0.9.7",
"plist": "git+https://github.com/nathansobo/node-plist.git",
"first-mate": ">=3 <4",
"git-utils": ">=3 <4",
"mv": "2.0.0",
"open": "0.0.4",
"exit": "0.1.2"
},
"devDependencies": {
"jasmine-focused": ">=1.0.7 <2.0",
"grunt": "~0.4.1",
"grunt-contrib-coffee": "~0.12.0",
"grunt-cli": "~0.1.8",
"grunt-shell": "~0.2.2",
"express": "~3.2.3",
"grunt-coffeelint": "0.0.6",
"coffee-script": "^1.8.0"
}
}