-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
51 lines (51 loc) · 1.25 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
{
"name": "vue-node",
"version": "1.1.1",
"description": "A require hook for loading single-file vue components in node.",
"main": "./lib/hook.js",
"scripts": {
"lint": "eslint lib test",
"test": "NODE_PATH=test ava",
"test:watch": "ava --watch",
"posttest": "npm run lint"
},
"ava": {
"require": [
"./test/helpers/setup.js"
]
},
"engines": {
"node": ">=6.0.0"
},
"repository": "knpwrs/vue-node",
"author": "Copyright (c) 2017 Kenneth Powers <[email protected]> (http://knpw.rs)",
"license": "MIT",
"bugs": {
"url": "https://github.com/knpwrs/vue-node/issues"
},
"homepage": "https://github.com/knpwrs/vue-node#readme",
"dependencies": {
"execa": "^0.6.0",
"lodash": "^4.17.4",
"memory-fs": "^0.4.1",
"webpack-node-externals": "^1.5.4",
"yargs": "^7.0.2"
},
"peerDependencies": {
"vue-loader": "*",
"webpack": "^2.2.1"
},
"devDependencies": {
"ava": "^0.19.0",
"browser-env": "^2.0.20",
"css-loader": "^0.28.0",
"eslint": "^3.15.0",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-html": "^2.0.0",
"eslint-plugin-import": "^2.2.0",
"vue": "^2.1.10",
"vue-loader": "*",
"vue-template-compiler": "*",
"webpack": "^2.2.1"
}
}