-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.93 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
{
"name": "@sum.cumo/vue-history",
"version": "1.0.3",
"description": "Deep tracking of Vue.js method invocations",
"main": "dist/vue-history.umd.js",
"module": "dist/vue-history.esm.js",
"unpkg": "dist/vue-history.min.js",
"types": "dist/esm/index.d.ts",
"keywords": [
"vue",
"vuex",
"state",
"management",
"mvc",
"model",
"history",
"component",
"deep"
],
"repository": {
"type": "git",
"url": "[email protected]:sumcumo/vue-history.git"
},
"homepage": "https://github.com/sumcumo/vue-history",
"scripts": {
"test": "jest --coverage=false",
"test.coverage": "jest",
"release": "git checkout master && git pull origin master && standard-version",
"lint": "tslint -p ./tsconfig.base.json",
"build": "npm run build:clear && tsc && npm run build:browser && npm run build:es && npm run build:umd",
"build:clear": "rm -rf ./dist",
"build:browser": "rollup --config build/rollup.config.browser.js",
"build:es": "rollup --config build/rollup.config.es.js",
"build:umd": "rollup --config build/rollup.config.umd.js",
"generate": "npm run test.coverage && npm run lint && npm run build",
"prepack": "npm run generate"
},
"author": "sum.cumo GmbH",
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/cli": "9.1.2",
"@commitlint/config-conventional": "9.1.1",
"@types/jest": "26.0.5",
"@types/json-stringify-safe": "5.0.0",
"@vue/test-utils": "1.0.3",
"husky": "4.2.5",
"jest": "26.1.0",
"rollup": "2.22.2",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-uglify": "6.0.4",
"standard-version": "8.0.2",
"ts-jest": "26.1.3",
"tslint": "6.1.2",
"tslint-config-airbnb": "5.11.2",
"typescript": "3.9.7",
"uglify-es": "3.3.9",
"vue": "2.6.11",
"vue-template-compiler": "2.6.11"
},
"dependencies": {
"json-stringify-safe": "^5.0.1"
}
}