forked from nuxt-community/nuxtent-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
130 lines (130 loc) · 3.66 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "nuxtent",
"version": "1.2.2",
"description": "Seamlessly use content files in your Nuxt.js sites.",
"main": "index.js",
"contributors": [
"Alid Castano (@alidcastano)",
"Mehdi Lahlou (@medfreeman)"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt-community/nuxtent-module.git"
},
"keywords": [
"Nuxt.js",
"Vue.js",
"Content",
"Blog",
"Posts",
"Collections",
"Navigation",
"Markdown",
"Static"
],
"license": "MIT",
"scripts": {
"#<git hooks>": "handled by husky",
"precommit": "lint-staged",
"#</git hooks>": "handled by husky",
"lint": "eslint --fix \"**/*.js\"",
"pretest": "npm run lint",
"e2e": "cross-env NODE_ENV=test jest --runInBand --forceExit",
"test": "npm run e2e",
"build": "cross-env NODE_ENV=production rollup -c rollup.config.js",
"watch": "npm run build -- -w",
"prepare": "npm run build",
"release": "standard-version && git push --follow-tags && npm publish"
},
"peerDependencies": {
"@nuxtjs/axios": "^4.5.2"
},
"dependencies": {
"chalk": "^2.3.0",
"date-fns": "^1.28.5",
"front-matter": "^2.3.0",
"js-yaml": "^3.10.0",
"loader-utils": "^1.1.0",
"markdown-it": "^8.4.0",
"markdown-it-anchor": "^4.0.0",
"param-case": "^2.1.1",
"path-to-regexp": "^2.0.0",
"uppercamelcase": "^3.0.0",
"url-join": "^4.0.0"
},
"devDependencies": {
"@nuxtjs/axios": "^4.5.2",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.24.1",
"chai": "^4.1.2",
"codecov": "^3.0.0",
"cross-env": "^5.1.3",
"eslint": "^4.15.0",
"eslint-config-i-am-meticulous": "^7.0.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-prettier-standard": "^1.0.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-jest": "^21.6.1",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-prettier": "^2.4.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"express": "^4.15.5",
"git-exec-and-restage": "^1.0.1",
"husky": "^0.14.3",
"jest": "^22.0.6",
"jsdom": "^11.5.1",
"lint-staged": "^6.0.0",
"mocha": "^4.1.0",
"nuxt": "latest",
"prettier-standard": "^8.0.0",
"request-promise-native": "^1.0.5",
"rollup": "^0.53.4",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-copy": "^0.2.3",
"rollup-plugin-filesize": "^1.5.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-uglify-es": "0.0.1",
"rollup-watch": "^4.3.1",
"serve-static": "^1.12.6",
"sinon": "^4.1.4",
"sinon-chai": "^2.13.0",
"standard-version": "^4.3.0"
},
"lint-staged": {
"*.js": [
"git-exec-and-restage eslint --fix --",
"git-exec-and-restage prettier-standard"
]
},
"jest": {
"testEnvironment": "node",
"testMatch": [
"**/?(*.)test.js"
],
"coverageDirectory": "./coverage/",
"mapCoverage": true,
"collectCoverage": true
},
"bugs": {
"url": "https://github.com/nuxt-community/nuxtent-module/issues"
},
"homepage": "https://github.com/nuxt-community/nuxtent-module#readme",
"directories": {
"doc": "docs",
"example": "examples",
"lib": "lib",
"test": "test"
},
"author": "Alid Castano"
}