-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 1.89 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
{
"name": "parallax-provider",
"version": "0.0.1",
"description": "A helper library to create parallax scrolling effects in the browser.",
"main": "dist/parallax-provider.cjs.js",
"jsnext:main": "dist/parallax-provider.esm.js",
"module": "dist/parallax-provider.esm.js",
"browser": "dist/parallax-provider.umd.js",
"author": "Adrian Henry <adrian@hungryturtlecode.com> (https://hungryturtlecode.com/)",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"lint": "eslint src",
"test": "jest",
"test:watch": "jest src --watch --notify",
"cover": "jest --coverage",
"clean": "rimraf dist",
"precommit": "lint-staged",
"format": "prettier --write \"src/**/*.+(js|md|ts|css|sass|less|graphql|yml|yaml|scss|json|vue)\"",
"prepublishOnly": "yarn clean && yarn lint && yarn test && yarn build"
},
"files": [
"dist"
],
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"chalk": "^2.0.1",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^22.1.2",
"husky": "^1.3.1",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3",
"rimraf": "^2.6.3",
"rollup": "^1.0.1",
"rollup-plugin-babel": "^4.2.0"
},
"keywords": [
"parallax",
"scrolling",
"javascript"
],
"repository": {
"type": "git",
"url": "https://github.com/adiman9/ParallaxProvider.git"
},
"bugs": {
"url": "https://github.com/adiman9/ParallaxProvider/issues"
},
"homepage": "https://github.com/adiman9/ParallaxProvider#readme",
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "yarn precommit"
}
}
}