-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
120 lines (120 loc) · 3.43 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "getting-started-inner-source",
"description": "A InnerSource roadmap with guidelines, recipes, and measures of success.",
"version": "0.0.0",
"author": {
"name": "commonality",
"email": "greg@swindle.net",
"url": "https://github.com/commonality"
},
"bugs": "https://github.com/commonality/getting-started-inner-source/issues",
"commitplease": {
"style": "angular",
"types": [
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test"
],
"scope": "\\S+.*"
},
"contributors": [],
"dependencies": {
"adr": "1.0.7",
"npm": "6.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "1.0.1",
"@semantic-release/git": "3.0.1",
"@semantic-release/npm": "3.0.2",
"ajv": "6.2.0",
"ajv-keywords": "3.1.0",
"commitplease": "3.2.0",
"eslint": "4.18.1",
"eslint-config-scanjs": "1.0.0-beta4",
"eslint-config-standard": "11.0.0",
"eslint-config-xo-space": "0.18.0",
"eslint-plugin-import": "2.9.0",
"eslint-plugin-jsdoc": "3.5.0",
"eslint-plugin-json": "1.2.0",
"eslint-plugin-no-unsafe-innerhtml": "1.0.16",
"eslint-plugin-no-unsanitized": "3.0.0",
"eslint-plugin-node": "6.0.1",
"eslint-plugin-promise": "3.6.0",
"eslint-plugin-scanjs-rules": "0.2.1",
"eslint-plugin-security": "1.4.0",
"eslint-plugin-standard": "3.0.1",
"eslint-plugin-unicorn": "4.0.2",
"eslint-plugin-xss": "0.1.9",
"fixpack": "2.3.1",
"markdown-magic": "0.1.20",
"markdown-magic-dependency-table": "1.3.2",
"markdown-magic-install-command": "1.3.1",
"markdown-magic-package-scripts": "1.2.1",
"nsp": "3.2.1",
"semantic-release": "13.4.1"
},
"directories": {
"doc": "./docs"
},
"engines": {
"node": ">=7.6.0"
},
"homepage": "https://github.com/commonality/getting-started-inner-source#readme",
"keywords": [
"analytics",
"guidelines",
"inner-source",
"innersource",
"metrics",
"roadmap"
],
"license": "MIT",
"maintainers": [],
"release": {
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
],
"publish": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
},
"repository": {
"type": "git",
"url": "https://github.com/commonality/getting-started-inner-source.git"
},
"scripts": {
"adr:init": "adr init",
"adr:list": "adr list",
"adr:new": "adr new",
"adr:to:csv": "adr export csv",
"adr:to:graph": "adr generate graph",
"adr:to:html": "adr export html",
"adr:to:json": "adr export json",
"adr:to:markdown": "adr export markdown",
"adr:toc": "adr generate toc",
"docs": "npm run docs:toc && npm run adr:toc",
"docs:toc": "md-magic --config '.github/config/markdown.config.js' --path '**/*.md' --ignore 'node_modules'",
"lint": "npm run lint:js && npm run lint:manifest",
"lint:js": "eslint --ignore-path .github/config/.eslintignore --config .github/config/.eslintrc.yml . --fix",
"lint:manifest": "fixpack",
"prepare": "npm run lint && npm run security",
"prepublishOnly": "nsp check",
"pretest": "npm run lint:js",
"security": "npm run security:nsp:scan && npm outdated",
"security:nsp:scan": "nsp check"
}
}