-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
82 lines (82 loc) · 2.04 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
{
"name": "webpack-isomorphic-compiler",
"version": "3.1.1",
"description": "A compiler that makes your life easier if you are building isomorphic webpack powered apps, that is, single page applications with server-side rendering",
"keywords": [
"webpack",
"isomorphic",
"server-side",
"rendering",
"render",
"compiler",
"compilation"
],
"author": "André Cruz <[email protected]>",
"license": "MIT",
"bugs": "https://github.com/moxystudio/webpack-isomorphic-compiler/issues",
"homepage": "https://github.com/moxystudio/webpack-isomorphic-compiler",
"repository": {
"type": "git",
"url": "[email protected]:moxystudio/webpack-isomorphic-compiler"
},
"main": "index.js",
"files": [
"lib"
],
"scripts": {
"lint": "eslint .",
"test": "jest --env node --coverage",
"posttest": "rimraf test/tmp",
"prerelease": "npm t && npm run lint",
"release": "standard-version",
"precommit": "lint-staged",
"commitmsg": "commitlint -e $GIT_PARAMS",
"postrelease": "git push --follow-tags origin HEAD && npm publish"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"peerDependencies": {
"webpack": ">=2.0.0 <5.0.0"
},
"dependencies": {
"lodash.wrap": "^4.1.1",
"p-defer": "^1.0.0",
"p-settle": "^2.0.0",
"webpack-sane-compiler": "^3.1.0"
},
"devDependencies": {
"@commitlint/cli": "^7.0.0",
"@commitlint/config-conventional": "^7.0.0",
"delay": "^3.0.0",
"eslint": "^5.3.0",
"eslint-config-moxy": "^6.0.1",
"husky": "^0.14.0",
"jest": "^24.5.0",
"lint-staged": "^7.0.0",
"lodash.escaperegexp": "^4.1.2",
"p-try": "^2.0.0",
"pify": "^3.0.0",
"rimraf": "^2.6.1",
"standard-version": "^4.2.0",
"strip-ansi": "^4.0.0",
"webpack": "^4.1.0"
},
"jest": {
"modulePathIgnorePatterns": [
"test/tmp/",
"test/configs/"
],
"coveragePathIgnorePatterns": [
"test/"
]
}
}