forked from cierrateam/nuxt-parse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.14 KB
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
{
"name": "nuxt-parse",
"version": "0.1.3",
"description": "A parse module for Nuxt.js",
"author": "Vittorio Emmermann",
"keywords": [
"vue",
"nuxt",
"nuxt.js"
],
"main": "lib/module.js",
"license": "MIT",
"scripts": {
"dev": "nuxt test/fixture",
"test": "jest",
"test:unit": "jest --testRegex \"/test/unit/(.+)\\.test\\.js$\"",
"test:system": "jest --testRegex \"/test/system/(.+)\\.test\\.js$\"",
"test:coverage": "yarn test --coverage",
"format": "prettier './**/*.{js,ts,json,vue}' --write"
},
"devDependencies": {
"jest": "25.1.0",
"nuxt": "2.11.0",
"prettier": "1.19.1",
"puppeteer": "2.1.0"
},
"jest": {
"testEnvironment": "node",
"collectCoverageFrom": [
"lib/**/*.{js,jsx}"
]
},
"dependencies": {
"consola": "^2.3.2",
"parse": "^2.5.1"
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cierrateam/nuxt-parse.git"
},
"bugs": {
"url": "https://github.com/cierrateam/nuxt-parse/issues"
},
"homepage": "https://github.com/cierrateam/nuxt-parse#readme"
}