-
-
Notifications
You must be signed in to change notification settings - Fork 193
/
package.json
69 lines (69 loc) · 2.38 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
{
"name": "embla-carousel",
"version": "1.0.0",
"author": "David Cetinkaya",
"private": false,
"description": "An extensible low level carousel for the web, written in TypeScript",
"keywords": [
"slider",
"carousel",
"lightweight"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/davidcetinkaya/embla-carousel"
},
"bugs": {
"url": "https://github.com/davidcetinkaya/embla-carousel/issues"
},
"homepage": "https://github.com/davidcetinkaya/embla-carousel#readme",
"files": [
"lib/**/*"
],
"browserslist": "last 5 versions",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jestconfig.json",
"start": "npm-run-all --parallel docs:watch lib:watch",
"lib:watch": "webpack-dev-server --config ./webpack/webpack.config.development",
"lib:build": "webpack -p --config ./webpack/webpack.config.production",
"docs:autoprefixer": "postcss -u autoprefixer -r docs/assets/style.css --nomap",
"docs:watch": "node-sass --watch --recursive docs/scss/style.scss -o docs/assets/",
"docs:build-css": "node-sass --output-style compressed docs/scss/style.scss -o docs/assets/",
"docs:build-js": "webpack -p --config ./webpack/webpack.config.docs",
"docs:build": "npm-run-all docs:build-js docs:build-css",
"build": "npm-run-all lib:build docs:build",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-transform-object-assign": "^7.2.0",
"@babel/preset-env": "^7.4.4",
"@types/jest": "^24.0.12",
"@types/jest-diff": "^20.0.0",
"autoprefixer": "^9.5.1",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.5",
"clean-webpack-plugin": "^1.0.1",
"jest": "^24.7.1",
"node-sass": "^4.12.0",
"npm-run-all": "^4.1.5",
"postcss-cli": "^6.1.2",
"prettier": "^1.17.0",
"ts-jest": "^23.10.5",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.4.5",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-server": "^3.3.1"
}
}