-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.76 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
74
75
{
"name": "nachos-package-manager",
"version": "1.0.0",
"description": "The official nachos package manager",
"main": "lib/index.js",
"bin": {
"nachos": "./bin/nachos"
},
"scripts": {
"lint": "gulp lint",
"test": "gulp test",
"coveralls": "gulp coveralls"
},
"pre-commit": [
"lint"
],
"repository": {
"type": "git",
"url": "https://github.com/nachos/package-manager"
},
"keywords": [
"package",
"manager",
"npm",
"nachos"
],
"author": "Nachos team",
"license": "MIT",
"bugs": {
"url": "https://github.com/nachos/package-manager/issues"
},
"homepage": "https://github.com/nachos/package-manager",
"devDependencies": {
"chai": "^3.4.0",
"chai-as-promised": "^5.1.0",
"git-validate": "^2.1.0",
"gulp": "^3.9.0",
"gulp-bump": "^1.0.0",
"gulp-coveralls": "^0.1.4",
"gulp-istanbul": "^0.10.2",
"gulp-jscs": "^3.0.1",
"gulp-jshint": "^1.11.2",
"gulp-mocha": "^2.1.3",
"jscs-nachos": "^1.0.1",
"jshint-stylish": "^2.0.1",
"lazypipe": "^1.0.1",
"mockery": "^1.4.0",
"run-sequence": "^1.1.4",
"sinon": "^1.17.2",
"sinon-chai": "^2.8.0"
},
"dependencies": {
"async": "^1.4.2",
"commander": "^2.9.0",
"debug": "^2.2.0",
"fstream": "^1.0.8",
"git-downloader": "^1.0.0",
"inquirer": "^0.11.0",
"jsonfile": "^2.2.3",
"lodash": "^3.10.1",
"mkdirp": "^0.5.1",
"nachos-config": "^1.2.0",
"nachos-open": "^1.0.0",
"nachos-packages": "^1.2.0",
"nachos-server-api": "nachos/server-api",
"nachos-settings-file": "^1.0.3",
"q": "^1.4.1",
"rimraf": "^2.4.3",
"semver": "^5.0.3",
"tar": "^2.2.1",
"tar-fs": "^1.8.1",
"validate-npm-package-name": "^2.2.2",
"validator": "^4.2.0"
}
}