UNPKG

1.43 kBJSONView Raw
1{
2 "name": "vue-hoc",
3 "version": "0.1.4",
4 "description": "Create Higher Order Vue Components",
5 "main": "dist/index.js",
6 "scripts": {
7 "test": "npm run build && ava",
8 "coverage": "nyc --reporter=html npm test",
9 "debug": "inspect node_modules/ava/profile",
10 "build": "babel src/ -d dist/ --source-maps",
11 "flow": "flow",
12 "eslint": "eslint src --fix",
13 "lint": "npm run eslint && npm run flow"
14 },
15 "ava": {
16 "files": [
17 "spec/**/*.spec.js"
18 ],
19 "source": [
20 "dist/**/*.js"
21 ],
22 "require": [
23 "./spec/hooks.js"
24 ],
25 "concurrency": 8
26 },
27 "repository": {
28 "type": "git",
29 "url": "git+https://github.com/jackmellis/vue-hoc.git"
30 },
31 "author": "Jack Ellis",
32 "license": "ISC",
33 "bugs": {
34 "url": "https://github.com/jackmellis/vue-hoc/issues"
35 },
36 "homepage": "https://github.com/jackmellis/vue-hoc#readme",
37 "devDependencies": {
38 "ava": "^0.22.0",
39 "babel-cli": "^6.26.0",
40 "babel-core": "^6.26.0",
41 "babel-eslint": "^7.2.3",
42 "babel-preset-env": "^1.6.0",
43 "babel-preset-flow": "^6.23.0",
44 "browser-env": "^3.1.2",
45 "eslint": "^4.5.0",
46 "eslint-plugin-flowtype": "^2.35.0",
47 "eslint-plugin-import": "^2.7.0",
48 "flow-bin": "^0.53.0",
49 "inspect-process": "^0.5.0",
50 "nyc": "^11.1.0",
51 "sinon": "^3.2.0",
52 "vue": "^2.4.2",
53 "vuenit": "^1.0.0"
54 },
55 "peerDependencies": {
56 "vue": "^2.4.0"
57 }
58}