-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
executable file
·73 lines (73 loc) · 1.75 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
{
"name": "parlx.js",
"version": "3.0.0",
"description": "Parallax scroll effect library",
"author": "Jakub Biesiada",
"license": "MIT",
"main": "lib/parlx.cjs.js",
"module": "lib/parlx.esm.js",
"types": "lib/index.d.ts",
"scripts": {
"release": "rimraf lib/* && npm run prettier && npm run lint && npm run build",
"build": "rollup -c",
"test": "jest --coverage",
"watch": "npm run build -- --watch",
"watch:test": "npm run test -- --watch",
"lint": "eslint 'src/**/*.ts' --fix",
"prettier": "prettier --write 'src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "https://github.com/parlx-js/parlx.js.git"
},
"keywords": [
"JavaScript",
"jQuery",
"parallax",
"movement",
"scroll",
"effect"
],
"bugs": {
"url": "https://github.com/parlx-js/parlx.js/issues"
},
"homepage": "https://github.com/parlx-js/parlx.js#readme",
"dependencies": {
"platform": "^1.3.5"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^8.1.0",
"@types/jest": "^26.0.3",
"@types/jquery": "^3.5.0",
"@types/platform": "^1.3.2",
"@typescript-eslint/parser": "^3.4.0",
"eslint": "^7.3.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.2.5",
"jest": "^26.1.0",
"jquery": "^3.5.1",
"lint-staged": "^10.2.11",
"prettier": "^2.0.5",
"rollup-plugin-terser": "^6.1.0",
"rollup-plugin-typescript2": "^0.27.1",
"ts-jest": "^26.1.1",
"typescript": "^3.9.5"
},
"jest": {
"transform": {
"^.+\\.ts?$": "ts-jest"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.ts": [
"npm run prettier",
"npm run lint"
]
}
}