This repository has been archived by the owner on Nov 6, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
84 lines (84 loc) · 2.3 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
{
"name": "vue-rellax",
"version": "0.2.0",
"description": "A plugin of Vue that adds a directive for parallax effect by rellax.js.",
"license": "MIT",
"author": "@croutonn",
"main": "dist/vue-rellax.cjs.js",
"module": "dist/vue-rellax.esm.js",
"unpkg": "dist/vue-rellax.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"dist"
],
"homepage": "https://github.com/croutonn/vue-rellax",
"bugs": "https://github.com/croutonn/vue-rellax/issues",
"repository": {
"type": "git",
"url": "https://github.com/yutahaga/vue-rellax.git"
},
"keywords": [
"vue",
"vue plugin",
"parallax",
"rellax"
],
"scripts": {
"build": "npm run build:ts && npm run build:bundle",
"build:ts": "tsc -p src",
"build:bundle": "node scripts/build.js",
"clean": "rimraf lib dist .tmp",
"dev": "cross-env BABEL_ENV=test karma start --auto-watch",
"lint": "tslint -p . && prettier --list-different \"{src,tests}/**/*.ts\"",
"format": "prettier --write \"{src,tests}/**/*.ts\"",
"test": "npm run lint && npm run test:unit",
"test:unit": "cross-env BABEL_ENV=test karma start --single-run",
"version": "npm run build"
},
"dependencies": {
"rellax": "^1.12.1",
"tslib": "^2.0.3"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.12",
"@types/rellax": "^1.7.3",
"@vue/test-utils": "^1.1.1",
"chai": "^4.2.0",
"cross-env": "^7.0.3",
"es6-promise": "^4.2.8",
"karma": "^5.2.3",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-spec-reporter": "^0.0.32",
"karma-typescript": "^5.2.0",
"lint-staged": "^10.5.3",
"mocha": "^8.2.1",
"prettier": "^2.1.2",
"puppeteer": "^5.5.0",
"rimraf": "^3.0.2",
"rollup": "^2.34.2",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.5",
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.12"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.ts": [
"npm run test",
"git add"
]
}
}