forked from OfficeDev/generator-office
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·64 lines (64 loc) · 1.89 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
{
"name": "generator-office",
"version": "1.1.15",
"description": "Yeoman generator for creating Microsoft Office projects using any text editor.",
"repository": {
"type": "git",
"url": "https://github.com/OfficeDev/generator-office/"
},
"scripts": {
"copy": "cpx \"src/app/templates/**/*.*\" generators/app/templates && cpx \"src/app/config/**/projectProperties.json*\" generators/app/templates && cpx \"src/app/config/**/projectProperties.json*\" generators/test",
"copy-watch": "cpx \"src/app/templates/**/*.*\" generators/app/templates --watch",
"tsc": "tsc -p tsconfig.json",
"tsc-watch": "tsc -p tsconfig.json -w",
"start": "rimraf generators && concurrently \"npm run tsc-watch\" \"npm run copy-watch\"",
"build": "rimraf generators && concurrently \"npm run tsc\" \"npm run copy\"",
"test": "mocha --timeout 0 -r ts-node/register generators/test/**.js"
},
"engines": {
"node": ">6.9.0"
},
"homepage": "https://github.com/officedev/generator-office",
"license": "MIT",
"author": "OfficeDev",
"files": [
"generators"
],
"main": "generators/index.js",
"keywords": [
"office",
"yeoman-generator",
"office-add-in",
"add-in",
"outlook",
"excel",
"word",
"powerpoint",
"onenote",
"project"
],
"dependencies": {
"applicationinsights": "^0.18.0",
"chalk": "^1.1.3",
"lodash": "^4.17.10",
"opn": "^4.0.2",
"rimraf": "^2.6.1",
"uuid": "^3.0.1",
"yeoman-generator": "^1.1.1",
"yosay": "^2.0.2"
},
"devDependencies": {
"@types/applicationinsights": "^0.15.33",
"@types/chalk": "^0.4.31",
"@types/lodash": "^4.14.109",
"@types/mocha": "^2.2.40",
"@types/node": "^7.0.65",
"concurrently": "^3.4.0",
"cpx": "^1.5.0",
"mocha": "^5.2.0",
"ts-node": "^3.0.2",
"typescript": "^2.8.3",
"yeoman-assert": "^3.1.1",
"yeoman-test": "^1.7.2"
}
}