forked from pnp/generator-spfx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.88 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.88 KB
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": "@pnp/generator-spfx",
"version": "1.10.2",
"description": "This Yeoman generator helps organisations to improve their development workflow with the SharePoint Framework. It extends the functionalities of the @microsoft/generator-sharepoint based on best pattern and practices. This generator extends the capabilities of ReactJS, and Knockout projects add support for additional frameworks and include advanced code analysis tools.",
"homepage": "https://pnp.github.io/generator-spfx/",
"author": {
"name": "Office 365 / SharePoint PnP Core Team",
"url": "https://github.com/pnp"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pnp/generator-spfx.git"
},
"files": [
"app",
"generators",
"lib"
],
"keywords": [
"SharePoint",
"SPFx",
"SharePoint Framework",
"Pattern and Practices",
"Office 365",
"Office 365 Development",
"SharePoint Framework Development",
"yeoman-generator",
"PnP",
"VueJS",
"Handlebars",
"Angular Elements",
"SharePointFramework"
],
"maintainers": [
{
"name": "Stefan Bauer",
"email": "office@n8d.at",
"url": "https://www.n8d.at/"
}
],
"contributors": [
{
"name": "Matthew Farrell",
"url": "https://github.com/matthewfarrell"
},
{
"name": "Bill Ayers",
"email": "BillA@flosim.com",
"url": "http://www.SPDoctor.net"
},
{
"name": "Vincent Biret",
"url": "https://github.com/baywet"
},
{
"name": "Sergei Sergeev",
"url": "https://github.com/s-KaiNet"
},
{
"name": "Paweł Hawrylak",
"url": "https://github.com/phawrylak"
},
{
"name": "Chris Kent",
"email": "ihatetimemachines@gmail.com",
"url": "https://thechriskent.com/"
},
{
"name": "Alex Terentiev",
"url": "https://github.com/AJIXuMuK"
}
],
"dependencies": {
"@microsoft/generator-sharepoint": "1.9.1",
"@pnp/office365-cli": "^2.3.0",
"applicationinsights": "^1.6.0",
"chalk": "^3.0.0",
"command-exists": "^1.2.8",
"lodash": "^4.17.15",
"param-case": "^3.0.1",
"update-notifier": "^3.0.1",
"yeoman-generator": "~4.2.0"
},
"devDependencies": {
"mocha": "~6.2.2",
"rimraf": "^3.0.0",
"yeoman-assert": "~3.1.1",
"yeoman-test": "~2.0.0"
},
"scripts": {
"test": "mocha ./test/full.coverage.test.js",
"postinstall": "node lib/patch.js",
"extract-template": "node tools/scripts/get-template.js"
}
}