-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
119 lines (119 loc) · 3.32 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
{
"name": "common-vocabulary",
"description": "Facilitate communication and avoid confusion with canonical terms: share a common vocabulary.",
"version": "1.0.0",
"author": {
"name": "commonality",
"email": "[email protected]",
"url": "https://github.com/gregswindle"
},
"bin": "lib/cli.js",
"bugs": {
"url": "https://github.com/commonality/common-vocabulary/issues"
},
"commitplease": {
"style": "angular",
"types": [
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test"
],
"scope": "\\S+.*"
},
"contributors": [
{
"name": "Greg Swindle",
"email": "[email protected]",
"url": "https://github.com/gregswindle"
}
],
"dependencies": {
"bunyan": "1.8.12",
"conventional-commit-types": "2.2.0",
"ejs": "2.5.7",
"fs-extra": "5.0.0",
"lodash": "4.17.5",
"markdown-magic": "0.1.20",
"markdown-magic-install-command": "1.3.1",
"meow": "4.0.0",
"object-hash": "1.2.0"
},
"devDependencies": {
"@semantic-release/changelog": "1.0.0",
"@semantic-release/git": "4.0.2",
"@semantic-release/npm": "3.0.1",
"commitplease": "3.2.0",
"coveralls": "3.0.0",
"eslint": "4.17.0",
"eslint-config-scanjs": "1.0.0-beta4",
"eslint-config-standard": "11.0.0-beta.0",
"eslint-config-xo-space": "0.17.0",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jsdoc": "3.3.1",
"eslint-plugin-json": "1.2.0",
"eslint-plugin-no-unsafe-innerhtml": "1.0.16",
"eslint-plugin-no-unsanitized": "2.0.2",
"eslint-plugin-node": "6.0.0",
"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": "3.0.1",
"eslint-plugin-xss": "0.1.9",
"fixpack": "2.3.1",
"jest": "^22.1.4",
"jest-cli": "^22.1.4",
"lec": "^1.0.1",
"markdown-magic-dependency-table": "1.3.2",
"markdown-magic-package-scripts": "1.2.1",
"nsp": "3.1.0",
"semantic-release": "15.0.0",
"standard-version": "4.3.0",
"travis-deploy-once": "4.3.4"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"lib"
],
"homepage": "https://github.com/commonality/common-vocabulary",
"jest": {
"testEnvironment": "node"
},
"keywords": [
"collaboration",
"communication",
"controlled vocabulary",
"standards"
],
"license": "MIT",
"main": "lib/index.js",
"maintainers": [],
"repository": "https://github.com/commonality/common-vocabulary.git",
"scripts": {
"docs": "npm run docs:markdown",
"docs:markdown": "md-magic --path '{.github/*.md,**/*.md}' '**/*.md' --ignore 'node_modules' --config ./markdown.config.js",
"docs:toc": "md-magic --path '**/*.md' --ignore 'node_modules'",
"lint": "npm run lint:js",
"lint:js": "eslint . --ext .json --ext .js --fix",
"lint:manifest": "fixpack",
"posttest": "npm run security",
"prepare": "npm run lint && npm run security",
"prepublish": "nsp check",
"prepublishOnly": "nsp check",
"pretest": "npm run lint",
"security": "nsp check --output summary",
"security:nsp:scan": "nsp check",
"test": "jest --config=jest.config.json",
"test:watch": "jest --config=jest.config.json --watch"
}
}