UNPKG

2.19 kBJSONView Raw
1{
2 "name": "webpack-nano",
3 "version": "0.6.3",
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": ">= 8.0.0 < 9.0.0 || >= 10.0.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/* lib test argv.js",
24 "lint-staged": "lint-staged",
25 "security": "npm audit",
26 "test": "ava --timeout=2500"
27 },
28 "files": [
29 "bin/",
30 "lib/",
31 "argv.js",
32 "README.md",
33 "LICENSE"
34 ],
35 "peerDependencies": {
36 "webpack": "^4.20.2"
37 },
38 "dependencies": {
39 "chalk": "^2.4.1",
40 "import-local": "^3.0.1",
41 "rechoir": "^0.7.0",
42 "yargs-parser": "^13.0.0"
43 },
44 "devDependencies": {
45 "@babel/preset-env": "^7.2.0",
46 "@babel/register": "^7.0.0",
47 "@commitlint/cli": "^8.1.0",
48 "@commitlint/config-conventional": "^8.1.0",
49 "ava": "^2.2.0",
50 "eslint": "^6.0.1",
51 "eslint-config-shellscape": "^2.0.2",
52 "esm": "^3.2.25",
53 "execa": "^2.0.3",
54 "lint-staged": "^9.2.0",
55 "nyc": "^14.1.0",
56 "p-defer": "^3.0.0",
57 "pre-commit": "^1.2.2",
58 "prettier": "^1.14.3",
59 "standard-version": "^6.0.1",
60 "webpack": "^4.20.2"
61 },
62 "keywords": [
63 "cli",
64 "cmd",
65 "command",
66 "light",
67 "lightweight",
68 "nano",
69 "small",
70 "teensy",
71 "webpack"
72 ],
73 "ava": {
74 "files": [
75 "!**/fixtures/**",
76 "!**/helpers/**"
77 ]
78 },
79 "lint-staged": {
80 "*.js": [
81 "eslint --fix",
82 "git add"
83 ]
84 },
85 "nyc": {
86 "include": [
87 "lib/*.js"
88 ],
89 "exclude": [
90 "lib/client*.js",
91 "test/"
92 ]
93 },
94 "pre-commit": "lint-staged"
95}