1 | {
|
2 | "name": "vue-functional-data-merge",
|
3 | "version": "3.1.0",
|
4 | "description": "Vue.js util for intelligently merging data passed to functional components.",
|
5 | "main": "dist/lib.common.js",
|
6 | "module": "dist/lib.esm.js",
|
7 | "types": "dist/index.d.ts",
|
8 | "scripts": {
|
9 | "fmt": "prettier --config ./.prettierrc --write {__test__,src}/**/*.{ts,js}",
|
10 | "rollup": "rollup -c",
|
11 | "prebuild": "scripts/clean.js",
|
12 | "build": "cross-env NODE_ENV=production npm run rollup",
|
13 | "bench": "node benchmark/",
|
14 | "size": "cat dist/lib.esm.js | wc -c",
|
15 | "size:gzip": "gzip -c dist/lib.esm.js | wc -c",
|
16 | "prerelease": "npm run build && npm test",
|
17 | "release": "standard-version",
|
18 | "postrelease": "git push --follow-tags origin master && npm publish",
|
19 | "prepublishOnly": "npm run build",
|
20 | "coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
|
21 | "test": "jest --verbose --coverage"
|
22 | },
|
23 | "files": [
|
24 | "dist",
|
25 | "src"
|
26 | ],
|
27 | "jest": {
|
28 | "moduleFileExtensions": [
|
29 | "ts",
|
30 | "tsx",
|
31 | "js"
|
32 | ],
|
33 | "transform": {
|
34 | "\\.(ts|tsx)$": "ts-jest"
|
35 | },
|
36 | "testMatch": [
|
37 | "**/__tests__/*.(ts|js)",
|
38 | "**/?(*.)(spec|test).(js|ts)"
|
39 | ],
|
40 | "coverageDirectory": "coverage",
|
41 | "collectCoverage": true
|
42 | },
|
43 | "repository": {
|
44 | "type": "git",
|
45 | "url": "git+https://github.com/alexsasharegan/vue-functional-data-merge.git"
|
46 | },
|
47 | "keywords": [
|
48 | "vue",
|
49 | "vuejs",
|
50 | "functional",
|
51 | "components",
|
52 | "vue",
|
53 | "util"
|
54 | ],
|
55 | "author": "Alex Regan <alex.joseph.regan@gmail.com> (https://github.com/alexsasharegan)",
|
56 | "license": "MIT",
|
57 | "bugs": {
|
58 | "url": "https://github.com/alexsasharegan/vue-functional-data-merge/issues"
|
59 | },
|
60 | "homepage": "https://github.com/alexsasharegan/vue-functional-data-merge#readme",
|
61 | "devDependencies": {
|
62 | "@types/benchmark": "^1.0.31",
|
63 | "@types/jest": "^24.0.13",
|
64 | "benchmark": "^2.1.4",
|
65 | "coveralls": "^3.0.3",
|
66 | "cross-env": "^5.2.0",
|
67 | "jest": "^24.8.0",
|
68 | "lodash": "^4.17.11",
|
69 | "prettier": "^1.17.1",
|
70 | "rollup": "^1.13.1",
|
71 | "rollup-plugin-terser": "^5.0.0",
|
72 | "rollup-plugin-typescript2": "^0.21.1",
|
73 | "rollup-plugin-uglify": "^6.0.2",
|
74 | "standard-version": "^6.0.1",
|
75 | "ts-jest": "^24.0.2",
|
76 | "typescript": "^3.5.1",
|
77 | "uglify-es": "^3.3.9",
|
78 | "vue": "^2.6.10"
|
79 | },
|
80 | "dependencies": {}
|
81 | }
|