forked from YahooArchive/mojito-cli-create
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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
{
"name": "mojito-cli-create",
"version": "0.0.7",
"description": "Subcommand for mojito-cli to create mojito scaffolding/boilerplate.",
"dependencies": {
"mkdirp": "~0.3.5",
"npmlog": "0.0.2",
"scanfs": "~0.1.0",
"through": "~2.3.1",
"which": "~1.0.5"
},
"devDependencies": {
"tap": "~0.4.1"
},
"scripts": {
"lint": "jshint {.,lib}/*.js*",
"pretest": "npm run clean",
"test": "tap tests/index.js",
"cover": "istanbul cover --dir artifacts/coverage tests",
"clean": "git clean -dfX {.,tests}/artifacts"
},
"repository": "git://github.com/yahoo/mojito-cli-create.git",
"bugs": "https://github.com/yahoo/mojito-cli-create/issues",
"contributors": [
"Chris Klaiber",
"Drew Folta <[email protected]>",
"Martin Cooper <[email protected]>",
"Matt Taylor",
"Ric Allinson <[email protected]>",
"Scott Shattuck"
],
"author": "Isao Yagi <[email protected]>",
"license": "BSD",
"readmeFilename": "README.md",
"keywords": [
"mojito",
"boilerplate",
"init"
]
}