-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.32 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
{
"name": "vpin",
"version": "1.1.1",
"description": "基于 vue 的钉子组件,把你的内容固定到屏幕中📌。",
"main": "dist/vpin.cjs.js",
"module": "dist/vpin.esm.js",
"jsnext:main": "dist/vpin.esm.js",
"scripts": {
"serve": "vue-cli-service serve",
"build": "rollup -c",
"watch": "rollup -c -w",
"pretest": "rollup -c -m inline",
"test": "mocha './tests/unit/*.spec.js'",
"test:coverage": "nyc mocha './tests/unit/*.spec.js'",
"prerelease": "npm run build",
"release": "release-it"
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/lpreterite/vpin"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"vue2",
"vue2-component",
"pin"
],
"author": "packy-tang <[email protected]> (https://github.com/lpreterite)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lpreterite/vpin/issues"
},
"homepage": "https://github.com/lpreterite/vpin#readme",
"dependencies": {
"lodash.throttle": "^4.1.1",
"vue": "^2.6.14"
},
"devDependencies": {
"@babel/cli": "^7.13.14",
"@babel/core": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/register": "^7.13.14",
"@release-it/conventional-changelog": "^4.2.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^18.0.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@vue/cli-plugin-babel": "^4.5.13",
"@vue/cli-plugin-unit-mocha": "^4.5.13",
"@vue/cli-service": "^4.5.13",
"@vue/compiler-sfc": "^3.2.9",
"@vue/test-utils": "^1.2.2",
"chai": "^4.2.0",
"core-js": "^2.6.12",
"cross-env": "^7.0.3",
"jsdom": "^17.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^8.3.2",
"nyc": "^15.1.0",
"postcss": "^8.3.6",
"postcss-advanced-variables": "^3.0.1",
"postcss-import": "^14.0.2",
"postcss-mixins": "^8.1.0",
"postcss-nested": "^5.0.6",
"postcss-preset-env": "^6.7.0",
"postcss-scss": "^4.0.0",
"postcss-url": "^10.1.3",
"release-it": "^14.6.1",
"rollup": "^2.45.2",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^5.1.9",
"rollup-watch": "^4.3.1",
"sass": "^1.53.0",
"sass-loader": "10.x",
"vue-template-compiler": "^2.6.14"
}
}