-
Notifications
You must be signed in to change notification settings - Fork 208
/
package.json
74 lines (74 loc) · 2.2 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
{
"name": "generator-office",
"version": "2.0.3",
"description": "Yeoman generator for creating Microsoft Office projects using any text editor.",
"repository": {
"type": "git",
"url": "https://github.com/OfficeDev/generator-office/"
},
"scripts": {
"copy": "copyfiles \"src/app/templates/**/*.*\" -u 2 generators/app && copyfiles \"src/app/config/**/projectProperties.json*\" -u 3 generators/app/templates && copyfiles \"src/app/config/**/projectProperties.json*\" -u 3 generators/test",
"lint": "eslint --ext .ts src",
"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": ">=14"
},
"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": {
"adm-zip": "0.5.12",
"axios": "^1.7.7",
"chalk": "^4.0.0",
"lodash": "^4.17.21",
"office-addin-usage-data": "^1.6.4",
"open": "^8.4.0",
"uuid": "^8.3.2",
"yeoman-generator": "^5.8.0",
"yosay": "^2.0.2"
},
"devDependencies": {
"@types/adm-zip": "^0.5.5",
"@types/lodash": "^4.14.182",
"@types/mocha": "^9.1.1",
"@types/node": "^18.16.0",
"@types/request": "^2.48.8",
"@types/yeoman-generator": "^5.2.10",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"concurrently": "^7.1.0",
"copyfiles": "^2.4.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "8.5.0",
"mocha": "^10.0.0",
"office-addin-manifest": "^1.13.2",
"prettier": "^2.6.2",
"rimraf": "^3.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.8.2",
"yeoman-assert": "^3.1.1",
"yeoman-environment": "^3.13.0",
"yeoman-test": "^6.3.0"
}
}