-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.37 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "vue-functional-data-merge",
"version": "4.0.1",
"description": "Vue.js util for intelligently merging data passed to functional components.",
"main": "dist/lib.common.js",
"module": "dist/lib.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"fmt": "prettier --config ./.prettierrc --write {__test__,src}/**/*.{ts,js}",
"rollup": "rollup -c",
"prebuild": "node scripts/clean.js",
"build": "cross-env NODE_ENV=production npm run rollup",
"bench": "node benchmark/",
"size": "cat dist/lib.esm.js | wc -c",
"size:gzip": "gzip -c dist/lib.esm.js | wc -c",
"prerelease": "npm run build && npm test",
"release": "standard-version",
"release:next": "standard-version",
"postrelease": "git push --follow-tags origin master && npm publish",
"postrelease:next": "git push --follow-tags origin master && npm publish -tag next",
"prepublishOnly": "npm run build",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test": "jest --verbose --coverage"
},
"files": [
"dist",
"src"
],
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "ts-jest"
},
"testMatch": [
"**/__tests__/*.(ts|js)",
"**/?(*.)(spec|test).(js|ts)"
],
"coverageDirectory": "coverage",
"collectCoverage": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexsasharegan/vue-functional-data-merge.git"
},
"keywords": [
"vue",
"vuejs",
"functional",
"components",
"vue",
"util"
],
"author": "Alex Regan <[email protected]> (https://github.com/alexsasharegan)",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexsasharegan/vue-functional-data-merge/issues"
},
"homepage": "https://github.com/alexsasharegan/vue-functional-data-merge#readme",
"devDependencies": {
"@types/benchmark": "^2.1.0",
"@types/jest": "^26.0.21",
"benchmark": "^2.1.4",
"coveralls": "^3.0.3",
"cross-env": "^7.0.3",
"jest": "^26.6.3",
"lodash": "^4.17.11",
"prettier": "^2.2.1",
"rollup": "^2.42.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.30.0",
"standard-version": "^9.1.1",
"ts-jest": "^26.5.4",
"tslib": "^2.1.0",
"typescript": "^4.2.3",
"uglify-es": "^3.3.9"
}
}