forked from OfficeDev/generator-office
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.52 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "generator-office",
"version": "0.6.7",
"description": "Yeoman generator for creating Microsoft Office projects using any text editor.",
"license": "MIT",
"author": "OfficeDev",
"contributors": [
"Connell, Andrew <[email protected]>",
"Thake, Jeremy <[email protected]>",
"Martella, Joe <[email protected]>",
"Mastykarz, Waldek <[email protected]>",
"Johnston, Jason <[email protected]>",
"Saxena, Arvind <[email protected]>",
"Barron, Gavin",
"Costesich, Pablo Alejandro"
],
"maintainers": [
{
"name": "andrewconnell",
"email": "[email protected]"
},
{
"name": "jthake",
"email": "[email protected]"
},
{
"name": "ms-office",
"email": "[email protected]"
}
],
"homepage": "https://github.com/officedev/generator-office",
"main": "index.js",
"preferGlobal": true,
"scripts": {
"dev-install": "tsd install -r -o --save-dev",
"test": "./node_modules/mocha/bin/_mocha -R dot test/**",
"test-coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R min -t 100000 test/**",
"test-travis": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec -t 100000 test/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/officedev/generator-office.git"
},
"bugs": {
"url": "https://github.com/officedev/generator-office/issues"
},
"files": [
"generators"
],
"keywords": [
"yeoman-generator",
"office",
"office-add-in",
"add-in",
"outlook",
"excel",
"word",
"powerpoint"
],
"dependencies": {
"chalk": "^1.1.3",
"deep-extend": "^0.4.1",
"lodash": "^4.16.4",
"uuid": "^2.0.3",
"yeoman-generator": "^0.24.1",
"yosay": "^1.2.1",
"xml2js": "^0.4.17"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.14",
"gulp": "^3.9.1",
"gulp-if": "^2.0.1",
"gulp-istanbul": "^1.1.1",
"gulp-jscs": "^4.0.0",
"gulp-jshint": "^2.0.1",
"gulp-load-plugins": "^1.3.0",
"gulp-mocha": "^3.0.1",
"gulp-print": "^2.0.1",
"gulp-task-listing": "^1.0.1",
"gulp-util": "^3.0.7",
"istanbul": "^0.4.5",
"jscs": "^3.0.7",
"jscs-jsdoc": "^2.0.0",
"jshint": "^2.9.3",
"jshint-stylish": "^2.2.1",
"mocha": "*",
"mockery": "^2.0.0",
"tsd": "^0.6.5",
"validator": "^6.0.0",
"which": "^1.1.1",
"yargs": "^6.0.0",
"yeoman-assert": "^2.2.1",
"yeoman-test": "^1.5.1"
}
}