UNPKG

1.93 kBJSONView Raw
1{
2 "name": "webpack-nano",
3 "version": "0.2.0",
4 "description": "A teensy, squeaky 🐤 clean Webpack CLI",
5 "license": "MPL-2.0",
6 "repository": "shellscape/webpack-nano",
7 "author": "shellscape",
8 "homepage": "https://github.com/shellscape/webpack-nano",
9 "bugs": "https://github.com/shellscape/webpack-nano/issues",
10 "bin": {
11 "wp": "bin/wp.js"
12 },
13 "engines": {
14 "node": ">= 10.11.0"
15 },
16 "scripts": {
17 "ci:coverage": "nyc npm run ci:test && nyc report --reporter=text-lcov > coverage.lcov",
18 "ci:lint": "npm run lint && npm run security",
19 "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
20 "ci:test": "npm run test -- --verbose",
21 "commitlint": "commitlint",
22 "commitmsg": "commitlint -e $GIT_PARAMS",
23 "lint": "eslint --fix --cache bin/* test argv.js",
24 "lint-staged": "lint-staged",
25 "security": "npm audit",
26 "test": "ava --timeout=2500"
27 },
28 "files": [
29 "bin/",
30 "argv.js",
31 "README.md",
32 "LICENSE"
33 ],
34 "peerDependencies": {
35 "webpack": "^4.20.2"
36 },
37 "dependencies": {
38 "chalk": "^2.4.1",
39 "import-local": "^2.0.0",
40 "yargs-parser": "^11.0.0"
41 },
42 "devDependencies": {
43 "@commitlint/cli": "^7.1.2",
44 "@commitlint/config-conventional": "^7.1.2",
45 "ava": "^1.0.0-rc.1",
46 "eslint": "^5.6.1",
47 "eslint-config-shellscape": "^2.0.2",
48 "execa": "^1.0.0",
49 "lint-staged": "^7.3.0",
50 "nyc": "^13.1.0",
51 "p-defer": "^1.0.0",
52 "pre-commit": "^1.2.2",
53 "prettier": "^1.14.3",
54 "standard-version": "^4.4.0",
55 "webpack": "^4.20.2"
56 },
57 "keywords": [
58 "cli",
59 "cmd",
60 "command",
61 "light",
62 "lightweight",
63 "nano",
64 "small",
65 "teensy",
66 "webpack"
67 ],
68 "pre-commit": "lint-staged",
69 "lint-staged": {
70 "*.js": [
71 "eslint --fix",
72 "git add"
73 ]
74 },
75 "nyc": {
76 "include": [
77 "bin/wp.js"
78 ],
79 "exclude": [
80 "test/"
81 ]
82 }
83}