-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
85 lines (85 loc) · 2.03 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "webpack-plugin-ramdisk",
"version": "0.2.0",
"description": "🐏 A webpack plugin for blazing fast builds on a RAM disk / drive",
"license": "MPL-2.0",
"repository": "shellscape/webpack-plugin-ramdisk",
"author": "shellscape",
"homepage": "https://github.com/shellscape/webpack-plugin-ramdisk",
"bugs": "https://github.com/shellscape/webpack-plugin-ramdisk/issues",
"main": "lib/index.js",
"engines": {
"node": ">= 10.0.0"
},
"scripts": {
"ci:coverage": "nyc npm run test && nyc report --reporter=text-lcov > coverage.lcov",
"ci:lint": "npm run lint && npm run security",
"ci:lint:commits": "commitlint --from=${CIRCLE_BRANCH} --to=${CIRCLE_SHA1}",
"ci:test": "npm run test -- --verbose",
"commitlint": "commitlint",
"commitmsg": "commitlint -e $GIT_PARAMS",
"lint": "eslint --fix --cache lib test",
"lint-staged": "lint-staged",
"pretest": "del test/fixtures/multi/output test/fixtures/simple/output",
"security": "npm audit --audit-level=high --production",
"test": "ava"
},
"files": [
"lib/",
"README.md",
"LICENSE"
],
"peerDependencies": {
"webpack": "^4.20.0 || ^5.0.0"
},
"dependencies": {
"chalk": "^4.1.0",
"execa": "^4.0.3",
"superstruct": "^0.12.1"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"ava": "^3.9.0",
"del-cli": "^3.0.1",
"eslint-config-shellscape": "^2.0.2",
"lint-staged": "^9.2.0",
"nyc": "^14.1.1",
"pre-commit": "^1.2.2",
"prettier": "^1.14.3",
"webpack": "^4.44.2",
"webpack-nano": "^0.8.1"
},
"keywords": [
"dev",
"development",
"disk",
"drive",
"in-memory",
"memory",
"ram",
"ramdisk",
"ramdrive",
"webpack"
],
"ava": {
"files": [
"!**/fixtures/**"
]
},
"pre-commit": "lint-staged",
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"nyc": {
"include": [
"lib/*.js"
],
"exclude": [
"test/"
]
}
}