-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
64 lines (64 loc) · 2.2 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
{
"name": "custom-properties-parallax",
"version": "0.0.0-development",
"description": "Parallax effect using custom properties",
"main": "dist/custom-properties-parallax.js",
"scripts": {
"build": "webpack --mode production",
"commitmsg": "commitlint -e $GIT_PARAMS",
"format": "prettier '**/*.{js,scss}' --ignore-path .gitignore --write",
"lint": "yarn lint:js && yarn lint:scss",
"lint:js": "eslint '**/*.js' --ignore-path .gitignore",
"lint:scss": "stylelint '**/*.scss' --ignore-path .gitignore",
"precommit": "lint-staged",
"prepublishOnly": "yarn build",
"semantic-release": "semantic-release",
"start": "webpack-dev-server --env.development --mode development --open",
"test": "yarn lint"
},
"repository": {
"type": "git",
"url": "https://github.com/SimonFinney/custom-properties-parallax.git"
},
"keywords": ["css", "custom", "properties", "parallax"],
"author": "Simon Finney <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SimonFinney/custom-properties-parallax/issues"
},
"homepage":
"https://github.com/SimonFinney/custom-properties-parallax#readme",
"devDependencies": {
"@babel/preset-env": "^7.0.0-beta.42",
"@commitlint/cli": "^6.1.3",
"@commitlint/config-conventional": "^6.1.3",
"babel-eslint": "^8.2.2",
"clean-webpack-plugin": "^0.1.19",
"css-loader": "^0.28.11",
"eslint": "^4.19.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.9.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^3.0.7",
"husky": "^0.14.3",
"lint-staged": "^7.0.0",
"node-sass": "^7.0.0",
"normalize.css": "^8.0.0",
"postcss-cssnext": "^3.1.0",
"postcss-import": "^11.1.0",
"postcss-loader": "^2.1.3",
"prettier": "^1.11.1",
"sass-loader": "^6.0.7",
"semantic-release": "^19.0.3",
"style-loader": "^0.20.3",
"stylelint": "^9.2.0",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-scss": "^3.0.0",
"webpack": "^4.1.1",
"webpack-cli": "^2.0.12",
"webpack-dev-server": "^3.1.1"
},
"dependencies": {},
"files": ["dist"],
"browserslist": ["> 1%", "Last 2 versions"]
}