forked from dojo/cli-create-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.37 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
{
"name": "@dojo/cli-create-app",
"version": "2.0.0-pre",
"description": "Command to scaffold a new command",
"private": true,
"homepage": "https://dojo.io",
"bugs": {
"url": "https://github.com/dojo/cli-create-app/issues"
},
"license": "BSD-3-Clause",
"main": "main.js",
"files": [
"dist",
"src",
"typings.json"
],
"engines": {
"node": ">=6",
"npm": ">=3"
},
"repository": {
"type": "git",
"url": "https://github.com/dojo/cli-create-app.git"
},
"scripts": {
"test": "grunt test"
},
"devDependencies": {
"@dojo/loader": "beta2",
"@dojo/interfaces": "beta2",
"@types/chai": "^3.4.34",
"@types/chalk": "^0.4.31",
"@types/ejs": "^2.3.33",
"@types/fs-extra": "0.0.34",
"@types/glob": "^5.0.30",
"@types/grunt": "~0.4.0",
"@types/mockery": "^1.4.29",
"@types/node": "^6.0.49",
"@types/sinon": "^1.16.32",
"@types/yargs": "^8.0.2",
"codecov.io": "0.1.6",
"glob": "^7.0.3",
"grunt": "~1.0.1",
"grunt-dojo2": "latest",
"intern": "^3.4.1",
"istanbul": "^0.4.3",
"mockery": "^1.7.0",
"remap-istanbul": "^0.6.4",
"sinon": "^1.17.5",
"typescript": "~2.4.1",
"yargs": "^5.0.0"
},
"dependencies": {
"chalk": "^1.1.3",
"cross-spawn": "^4.0.0",
"ejs": "^2.5.2",
"fs-extra": "^0.30.0",
"ora": "^0.3.0",
"pkg-dir": "^1.0.0"
}
}