UNPKG

2.09 kBJSONView Raw
1{
2 "name": "webpack-plugin-ramdisk",
3 "version": "0.1.1",
4 "description": "🐏 A webpack plugin for blazing fast builds on a RAM disk / drive",
5 "license": "MPL-2.0",
6 "repository": "shellscape/webpack-plugin-ramdisk",
7 "author": "shellscape",
8 "homepage": "https://github.com/shellscape/webpack-plugin-ramdisk",
9 "bugs": "https://github.com/shellscape/webpack-plugin-ramdisk/issues",
10 "main": "lib/index.js",
11 "engines": {
12 "node": ">= 10.0.0"
13 },
14 "scripts": {
15 "ci:coverage": "nyc npm run test && nyc report --reporter=text-lcov > coverage.lcov",
16 "ci:lint": "npm run lint && npm run security",
17 "ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
18 "ci:test": "npm run test -- --verbose",
19 "commitlint": "commitlint",
20 "commitmsg": "commitlint -e $GIT_PARAMS",
21 "lint": "eslint --fix --cache lib test",
22 "lint-staged": "lint-staged",
23 "pretest": "del test/fixtures/multi/output test/fixtures/simple/output",
24 "security": "npm audit",
25 "test": "ava"
26 },
27 "files": [
28 "lib/",
29 "README.md",
30 "LICENSE"
31 ],
32 "peerDependencies": {
33 "webpack": "^4.20.0"
34 },
35 "dependencies": {
36 "chalk": "^2.4.1",
37 "execa": "^2.0.0",
38 "joi": "^14.3.0"
39 },
40 "devDependencies": {
41 "@commitlint/cli": "^8.0.0",
42 "@commitlint/config-conventional": "^8.0.0",
43 "ava": "^2.1.0",
44 "del-cli": "^2.0.0",
45 "eslint": "^6.0.1",
46 "eslint-config-shellscape": "^2.0.2",
47 "lint-staged": "^9.2.0",
48 "nyc": "^14.1.1",
49 "pre-commit": "^1.2.2",
50 "prettier": "^1.14.3",
51 "standard-version": "^6.0.1",
52 "webpack": "^4.28.1",
53 "webpack-nano": "^0.6.1"
54 },
55 "keywords": [
56 "dev",
57 "development",
58 "disk",
59 "drive",
60 "in-memory",
61 "memory",
62 "ram",
63 "ramdisk",
64 "ramdrive",
65 "webpack"
66 ],
67 "ava": {
68 "files": [
69 "!**/fixtures/**"
70 ]
71 },
72 "pre-commit": "lint-staged",
73 "lint-staged": {
74 "*.js": [
75 "eslint --fix",
76 "git add"
77 ]
78 },
79 "nyc": {
80 "include": [
81 "lib/*.js"
82 ],
83 "exclude": [
84 "test/"
85 ]
86 }
87}