This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
73 lines (73 loc) · 1.84 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
69
70
71
72
73
{
"name": "atom-version-manager",
"version": "0.1.4",
"description": "A tool to quickly switch between versions of Atom",
"scripts": {
"compile": "tsc",
"prepublish": "npm run compile",
"lint": "tslint \"src/**/*.ts\" \"test/**/*.ts\"",
"test": "mocha --compilers ts:ts-node/register ./test/*",
"build": "npm-run-all compile lint test"
},
"bin": {
"avm": "./lib/src/cli.js"
},
"main": "./lib/src/api.js",
"repository": {
"type": "git",
"url": "https://github.com/atom/avm"
},
"keywords": [
"atom",
"windows"
],
"author": "Paul Betts <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/atom/avm/issues"
},
"typings": "lib/src/index.d.ts",
"homepage": "https://github.com/atom/avm",
"dependencies": {
"commander": "^2.9.0",
"debug": "^2.6.8",
"download": "^6.2.2",
"ffi": "^2.2.0",
"graceful-fs": "^4.1.11",
"inquirer": "^3.1.0",
"mkdirp": "^0.5.1",
"ref": "^1.3.4",
"ref-struct": "^1.1.0",
"rimraf": "^2.6.1",
"rxjs": "^5.4.0",
"semver": "^5.3.0",
"spawn-rx": "^2.0.11",
"temp": "^0.8.3",
"yauzl": "^2.8.0"
},
"devDependencies": {
"@types/chai": "^4.0.0",
"@types/chai-as-promised": "0.0.31",
"@types/commander": "^2.9.1",
"@types/ffi": "0.0.19",
"@types/graceful-fs": "^2.0.29",
"@types/inquirer": "0.0.34",
"@types/mkdirp": "^0.3.29",
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.29",
"@types/ref": "0.0.28",
"@types/ref-struct": "0.0.28",
"@types/rimraf": "0.0.28",
"@types/semver": "^5.3.31",
"@types/temp": "^0.8.29",
"chai": "^4.0.2",
"chai-as-promised": "^6.0.0",
"marked": "^0.3.6",
"mocha": "^3.4.2",
"npm-run-all": "^4.0.2",
"ts-node": "^3.0.6",
"tslint": "^5.4.3",
"typescript": "^2.3.4",
"uuid": "^3.0.1"
}
}