-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
109 lines (109 loc) · 2.91 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "vue-next-level-scroll",
"version": "1.2.0",
"description": "Bring your scroll game to the next level",
"author": "Alexander Lichter <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Developmint/vue-next-level-scroll"
},
"bugs": {
"url": "https://github.com/Developmint/vue-next-level-scroll/issues"
},
"main": "dist/vue-next-level-scroll.cjs.js",
"module": "dist/vue-next-level-scroll.es.js",
"cdn": "dist/vue-next-level-scroll.min.js",
"unpkg": "dist/vue-next-level-scroll.min.js",
"jsdelivr": "dist/vue-next-level-scroll.min.js",
"scripts": {
"dev": "nuxt test/fixture",
"lint": "eslint src test",
"test": "npm run lint && jest",
"build": "bili --format cjs,es,umd,umd-min --moduleName nextLevelScroll --no-babel.babelrc",
"release": "npm run build && standard-version && git push --follow-tags && npm publish",
"commitlint": "commitlint -e $GIT_PARAMS",
"coverage": "codecov"
},
"sideEffects": false,
"files": [
"src",
"dist"
],
"keywords": [
"vue",
"vuejs",
"scroll",
"component",
"plugin"
],
"engines": {
"node": ">=8.0.0",
"npm": ">=5.0.0"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/lib/$1"
},
"snapshotSerializers": [
"<rootDir>/node_modules/jest-serializer-vue"
],
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/",
"/test/fixtures"
]
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@nuxtjs/eslint-config": "0.0.1",
"@vue/server-test-utils": "^1.0.0-beta",
"@vue/test-utils": "^1.0.0-beta",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"babel-loader": "^8.0.4",
"babel-preset-vue-app": "^2.0.0",
"bili": "^4.0.0",
"cheerio": "^1.0.0-rc.2",
"codecov": "latest",
"eslint": "^5.8.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "latest",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^4.7.1",
"flush-promises": "^1.0.2",
"husky": "^1.1.3",
"jest": "latest",
"jest-serializer-vue": "^2.0.2",
"jsdom": "latest",
"standard-version": "latest",
"vue-jest": "^3.0.0",
"vue-loader": "^15.4.2",
"vue-router": "^3.0.1",
"vue-server-renderer": "^2.5.17",
"vue-template-compiler": "^2.5.17"
},
"dependencies": {
"vue": "^2.5.17"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "npm run commitlint"
}
}
}