forked from Developmint/nuxt-purgecss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.12 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
86
87
88
89
90
{
"name": "nuxt-purgecss",
"version": "0.2.1",
"description": "",
"license": "MIT",
"contributors": [
{
"name": "Alexander Lichter <[email protected]>"
}
],
"main": "lib/module.js",
"repository": {
"mode": "git",
"url": "git+https://github.com/Developmint/nuxt-purgecss"
},
"bugs": {
"url": "https://github.com/Developmint/nuxt-purgecss/issues"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "nuxt --config-file test/fixture/configs/postcss/default.js",
"lint": "eslint lib test",
"test": "yarn run lint && jest --detectOpenHandles",
"release": "standard-version && git push --follow-tags && npm publish",
"commitlint": "commitlint -E HUSKY_GIT_PARAMS",
"coverage": "codecov"
},
"eslintIgnore": [
"lib/templates/*.*"
],
"files": [
"lib"
],
"keywords": [
"nuxtjs",
"nuxt",
"nuxt-module",
"purgecss",
"css"
],
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
"jest": {
"testEnvironment": "node",
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/fixture"
],
"forceExit": true
},
"dependencies": {
"@fullhuman/postcss-purgecss": "^2.0.5",
"consola": "^1.4.5",
"glob-all": "^3.1.0",
"purgecss": "^2.0.5",
"purgecss-webpack-plugin": "^2.0.5"
},
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"@nuxtjs/eslint-config": "^0.0.1",
"babel-eslint": "^10.0.1",
"codecov": "^3.3.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"get-port": "^4.2.0",
"husky": "^1.3.1",
"jest": "^23.6.0",
"jsdom": "^13.2.0",
"nuxt-edge": "^2.3.0-25706271.cca799c",
"standard-version": "^4.4.0"
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint",
"commit-msg": "yarn run commitlint"
}
}
}