-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 886 Bytes
/
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
{
"name": "generator-hljs",
"version": "0.2.3",
"description": "Yeoman generator for Highlight.js",
"files": [
"generators"
],
"scripts": {
"eslint": "eslint generators/**/*.js",
"test": "npm run eslint"
},
"keywords": [
"yeoman-generator",
"highlight.js",
"hljs"
],
"repository": {
"type": "git",
"url": "https://github.com/idleberg/generator-hljs"
},
"author": "",
"license": "MIT",
"dependencies": {
"global-modules": "^2.0.0",
"globby": "^10.0.1",
"highlight.js": "highlightjs/highlight.js#9.12.0",
"update-notifier": "^3.0.1",
"yarn-global-modules": "^1.0.1",
"yeoman-generator": "^4.1.0",
"yosay": "^2.0.2"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.5.1",
"husky": "^3.0.8"
},
"husky": {
"hooks": {
"pre-commit": "npm run test"
}
}
}