-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
executable file
·54 lines (54 loc) · 1.34 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
{
"name": "todo-webpack-plugin",
"version": "1.10.1",
"description": "Webpack plugin for generating report of TODO, FIXME, etc",
"main": "index.js",
"husky": {
"hooks": {
"pre-commit": "npm run pre-commit"
}
},
"scripts": {
"pre-commit": "npm test && npm run eslint",
"all": "npm test && npm run eslint",
"build": "./node_modules/.bin/webpack --hide-modules --mode development",
"eslint": "eslint \"./**/*.js\" --config .eslintrc.js || true",
"lint": "npm run eslint",
"test": "ava"
},
"repository": {
"type": "git",
"url": "git://github.com/mikeerickson/todo-webpack-plugin"
},
"keywords": [
"webpack",
"plugin",
"todo",
"fixme",
"changeme",
"leasot"
],
"author": "Mike Erickson <[email protected]> (https://github.com/mikeerickson)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikeerickson/todo-webpack-plugin/issues"
},
"homepage": "https://github.com/mikeerickson/todo-webpack-plugin",
"devDependencies": {
"ava": "1.0.0-rc.1",
"chai": "^4.0.1",
"chalk": "2.4.1",
"dumper.js": "1.2.0",
"eslint": "5.5.0",
"husky": "1.1.3",
"mocha": "5.2.0",
"webpack": "4.20.2",
"webpack-cli": "3.1.2"
},
"dependencies": {
"leasot": "11.4.0",
"slash": "2.0.0"
},
"engine": "node >= 0.8.0",
"reveal": true
}