-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.59 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
{
"name": "vue-localstorage2",
"version": "0.0.6",
"description": "Lightweight localStorage plugin for Vue 2.0",
"main": "libs/vue-localstorage2.cjs.js",
"module": "libs/vue-localstorage2.es.js",
"unpkg": "libs/vue-localstorage2.min.js",
"jsdelivr": "libs/vue-localstorage2.min.js",
"scripts": {
"build": "rm -rf dist/ libs/ && tsc && bili",
"test": "npm run build && jest",
"dev": "rm -rf dist/ && tsc",
"examples": "poi",
"docs": "rm -rf docs/ && poi build && gh-pages -d docs",
"postversion": "npm run build && npm run docs",
"lint": "tslint --project tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Army-U/vue-localstorage2.git"
},
"author": "Army-U <[email protected]>",
"bugs": {
"url": "https://github.com/Army-U/vue-localstorage2/issues"
},
"homepage": "https://github.com/Army-U/vue-localstorage2#readme",
"license": "MIT",
"dependencies": {
"sewing": "0.0.53"
},
"devDependencies": {
"babel-core": "6.26.3",
"babel-jest": "22.4.3",
"bili": "3.1.2",
"element-ui": "2.2.1",
"gh-pages": "1.1.0",
"jest": "22.4.3",
"jest-puppeteer-preset": "3.0.1",
"poi": "9.6.13",
"puppeteer": "1.1.1",
"regenerator-runtime": "0.11.1",
"tslint": "5.10.0",
"tslint-config-standard": "7.0.0",
"typescript": "2.8.3"
},
"jest": {
"preset": "jest-puppeteer-preset"
},
"bili": {
"input": "dist/index.js",
"outDir": "libs",
"format": [
"cjs",
"umd",
"es",
"umd-min"
],
"exports": "named",
"banner": true
}
}