-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
58 lines (58 loc) · 1.42 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
{
"name": "require-extension-hooks-vue",
"version": "3.0.0",
"description": "Simple server parser for .vue files",
"main": "src/index.js",
"scripts": {
"test": "nyc ava --tap | tap-spec",
"lint": "eslint src"
},
"ava": {
"files": [
"spec/**/*.spec.js"
],
"sources": [
"index.js"
],
"require": [
"./spec/helpers/setup.js"
],
"verbose": false,
"concurrency": 8,
"timeout": "240s"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jackmellis/require-extension-hooks-vue.git"
},
"author": "Jack Ellis",
"license": "ISC",
"bugs": {
"url": "https://github.com/jackmellis/require-extension-hooks-vue/issues"
},
"homepage": "https://github.com/jackmellis/require-extension-hooks-vue#readme",
"peerDependencies": {
"require-extension-hooks": "^0.3.0",
"vue-template-compiler": "^2.6.x"
},
"dependencies": {
"@vue/component-compiler-utils": "^2.3.1",
"consolidate": "^0.15.1",
"postcss": "^7.0.14",
"postcss-modules-sync": "^1.0.0",
"source-map-support": "^0.5.10"
},
"devDependencies": {
"ava": "^1.4.1",
"browser-env": "^3.2.5",
"eslint": "^5.16.0",
"nyc": "^13.3.0",
"pug": "^2.0.3",
"require-extension-hooks": "^0.3.3",
"require-extension-hooks-babel": "^0.1.1",
"sinon": "^6.0.0",
"vue": "^2.6.10",
"vue-template-compiler": "^2.6.10",
"tap-spec": "^5.0.0"
}
}