-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 956 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 956 Bytes
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
{
"name": "Treihadwyl-Package-Manager",
"version": "0.2.0",
"description": "Quick CLI for initialising and working with Treihadwyl modules",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/treihadwyl/tpm.git"
},
"bin": {
"tpm": "./index.js"
},
"scripts": {
"postinstall": "./bin/postinstall",
"test": "gulp test"
},
"author": "Matt Styles <matt@veryfizzyjelly.com",
"licenses": [
{
"type": "ISC",
"url": "https://github.com/treihadwyl/tpm/blob/master/LICENSE.md"
}
],
"dependencies": {
"commander": "^2.2.0",
"chalk": "^0.4.0",
"lodash-node": "^2.4.1",
"es6-promise": "^0.1.1",
"shelljs": "^0.2.6",
"promptly": "^0.2.0",
"rimraf": "^2.2.6"
},
"devDependencies": {
"gulp": "^3.6.0",
"gulp-mocha": "^0.4.1",
"gulp-util": "^2.2.14",
"chai": "^1.9.1",
"gulp-plumber": "^0.5.6",
"gulp-notify": "^1.2.4"
}
}