-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
116 lines (116 loc) · 2.64 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
{
"name": "modern-javascript-snippets",
"displayName": "Modern (ES6+) Javascript Snippets",
"version": "1.1.0",
"publisher": "tunnckocore",
"description": "Atom & VSCode - Modern javascript snippets for better productivity with support for JavaScript, Babel, TypeScript, JSX and semicolon-less code.",
"repository": "https://github.com/tunnckoCore/modern-javascript-snippets",
"author": "Charlike Mike Reagent <@tunnckoCore> (http://i.am.charlike.online)",
"precommit.silent": true,
"license": "MIT",
"scripts": {
"test": "standard verbfile.js --fix",
"prerelease": "npm test",
"release": "standard-version --sign --no-verify",
"precommit": "git add --all",
"commit": "git-cz"
},
"dependencies": {},
"devDependencies": {
"camelcase": "^4.1.0",
"commitizen": "^2.9.6",
"cson-parser": "^2.0.0",
"cz-conventional-changelog": "^2.0.0",
"each-promise": "^1.0.5",
"eslint": "^3.19.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"pify": "^2.3.0",
"pre-commit": "^1.2.2",
"standard": "^10.0.2",
"standard-version": "^4.0.0",
"verb-generate-readme": "^0.6.0"
},
"files": [
"atom/"
],
"keywords": [],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"verb": {
"run": true,
"toc": {
"render": true,
"method": "preWrite",
"maxdepth": 3
},
"layout": "empty",
"tasks": [
"readme"
],
"related": {
"list": [
"always-done",
"dush",
"dush-router",
"minibase",
"try-catch-core"
],
"highlight": "always-done"
},
"lint": {
"reflinks": true
},
"reflinks": [
"always-done",
"async-done",
"base",
"charlike",
"commitizen",
"dezalgo",
"once",
"standard-version",
"verb",
"verb-generate-readme",
"extend-shallow",
"standard"
]
},
"engines": {
"node": ">=4",
"npm": ">=2",
"atom": ">=1.0.0",
"vscode": ">=1.0.0"
},
"categories": [
"Snippets"
],
"contributes": {
"snippets": [
{
"language": "javascript",
"path": "./vscode/snippets.json"
},
{
"language": "typescript",
"path": "./vscode/snippets.json"
},
{
"language": "javascriptreact",
"path": "./vscode/snippets.json"
},
{
"language": "typescriptreact",
"path": "./vscode/snippets.json"
},
{
"language": "html",
"path": "./vscode/snippets.json"
}
]
}
}