-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
92 lines (92 loc) · 2.49 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
82
83
84
85
86
87
88
89
90
91
92
{
"name": "vue2-storage",
"description": "Browser storage for JavaScript or Vue.js app",
"keywords": [
"vue",
"vuejs",
"plugin",
"storage",
"localStorage",
"memoryStorage",
"sessionStorage"
],
"version": "6.1.3",
"license": "MIT",
"author": {
"name": "Yarkov Aleksey",
"email": "[email protected]"
},
"homepage": "https://github.com/yarkovaleksei/vue2-storage#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/yarkovaleksei/vue2-storage.git"
},
"bugs": {
"url": "https://github.com/yarkovaleksei/vue2-storage/issues"
},
"scripts": {
"prepublish": "check-node-version --npm \">= 8.*\" || yarn build",
"build:package": "cross-env NODE_ENV=production rollup -c rollup.config.ts",
"build:types": "tsc src/index.ts -t es5 --declaration --emitDeclarationOnly --outDir dist",
"build": "run-s clean build:package build:types",
"start": "cross-env NODE_ENV=development rollup -c rollup.config.ts --watch",
"docs:watch": "docsify serve docs --port 8080",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"test": "jest",
"test:watch": "jest --watch",
"clean": "rimraf dist/*.js* dist/*.ts ./*.log"
},
"files": [
"dist/*.js",
"dist/*.ts"
],
"main": "dist/vue2-storage.common.js",
"module": "dist/vue2-storage.esm.js",
"unpkg": "dist/vue2-storage.js",
"typings": "dist/index.d.ts",
"dependencies": {},
"devDependencies": {
"@types/jest": "^24.0.12",
"@typescript-eslint/eslint-plugin": "4.15.1",
"@typescript-eslint/parser": "4.15.1",
"check-node-version": "^4.1.0",
"cross-env": "^5.2.0",
"docsify-cli": "^4.4.3",
"eslint": "7.20.0",
"husky": "^2.2.0",
"jest": "^24.8.0",
"jest-config": "^24.8.0",
"jest-localstorage-mock": "^2.4.0",
"lint-staged": "^8.1.6",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.3",
"rollup": "^2.79.2",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-node-resolve": "^4.2.4",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-typescript": "^1.0.1",
"rollup-plugin-uglify-es": "^0.0.1",
"ts-jest": "^24.0.2",
"typescript": "^3.4.5",
"vue": "^2"
},
"peerDependencies": {
"vue": "^2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": [
"yarn lint",
"yarn test --passWithNoTests"
]
},
"engines": {
"node": ">= 8.*"
}
}