-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.76 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
{
"name": "hodor-loader",
"version": "5.0.0",
"description": "A webpack loader for hodorifying JavaScript code",
"keywords": [
"hodor",
"webpack-loader",
"ecosystem:webpack",
"hodor-loader",
"hodorify",
"lexer",
"hold-the-door"
],
"homepage": "https://github.com/dwiyatci/hodor-loader",
"bugs": "https://github.com/dwiyatci/hodor-loader/issues",
"license": "SEE LICENSE IN LICENSE.txt",
"author": "Glenn Dwiyatcita <glenn@nonpartisan.com> (https://tiny.cc/dwiyatci)",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/dwiyatci/hodor-loader.git"
},
"scripts": {
"install:clean": "yarn upgrade || yarn install",
"update": "yarn upgrade-interactive --latest",
"start": "webpack serve",
"build": "webpack --env production",
"watch": "webpack --watch",
"lint": "eslint --cache .",
"test:nyan": "yarn test | tnyan",
"test": "node test/loader.test.js",
"cov": "yarn cov:clean && yarn cov:generate",
"cov:clean": "rimraf coverage",
"cov:generate": "istanbul cover test/loader.test.js",
"cov:report": "cat ./coverage/lcov.info | codecov",
"commit": "git-cz",
"semantic-release-dry-run": "yarn semantic-release --dry-run",
"semantic-release": "semantic-release"
},
"dependencies": {
"falafel": "2.2.4",
"loader-utils": "2.0.0",
"schema-utils": "3.0.0"
},
"devDependencies": {
"@babel/core": "7.12.3",
"@babel/plugin-proposal-object-rest-spread": "7.12.1",
"@babel/plugin-transform-runtime": "7.12.1",
"@babel/preset-env": "7.12.1",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"babel-loader": "8.1.0",
"clean-webpack-plugin": "3.0.0",
"codecov.io": "0.1.6",
"commitizen": "4.2.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.12.1",
"eslint-config-airbnb-base": "14.2.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-import": "2.22.1",
"ghooks": "2.0.4",
"html-loader": "1.3.2",
"html-webpack-plugin": "4.5.0",
"istanbul": "0.4.5",
"memory-fs": "0.5.0",
"prettier": "2.1.2",
"rimraf": "3.0.2",
"semantic-release": "17.2.2",
"tap-nyan": "1.1.0",
"tape": "5.0.1",
"webpack": "5.4.0",
"webpack-cli": "4.1.0",
"webpack-dev-server": "3.11.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm t"
}
},
"release": {
"branches": [
"master",
"next"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github"
]
}
}