UNPKG

2.06 kBJSONView Raw
1{
2 "name": "webpack-plugin-ramdisk",
3 "version": "0.1.5",
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 --audit-level=moderate",
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 "@hapi/joi": "^15.1.0",
37 "chalk": "^3.0.0",
38 "execa": "^3.4.0"
39 },
40 "devDependencies": {
41 "@commitlint/cli": "^11.0.0",
42 "@commitlint/config-conventional": "^11.0.0",
43 "ava": "^2.1.0",
44 "del-cli": "^3.0.1",
45 "eslint-config-shellscape": "^2.0.2",
46 "lint-staged": "^9.2.0",
47 "nyc": "^14.1.1",
48 "pre-commit": "^1.2.2",
49 "prettier": "^1.14.3",
50 "webpack": "^4.44.2",
51 "webpack-nano": "^0.8.1"
52 },
53 "keywords": [
54 "dev",
55 "development",
56 "disk",
57 "drive",
58 "in-memory",
59 "memory",
60 "ram",
61 "ramdisk",
62 "ramdrive",
63 "webpack"
64 ],
65 "ava": {
66 "files": [
67 "!**/fixtures/**"
68 ]
69 },
70 "pre-commit": "lint-staged",
71 "lint-staged": {
72 "*.js": [
73 "eslint --fix",
74 "git add"
75 ]
76 },
77 "nyc": {
78 "include": [
79 "lib/*.js"
80 ],
81 "exclude": [
82 "test/"
83 ]
84 }
85}