-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
104 lines (104 loc) · 2.8 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "smoothslider",
"version": "0.1.0",
"description": "A Minimal Preact Carousel Slider",
"license": "MIT",
"author": "te schultz",
"main": "component/",
"keywords": [
"carousel",
"carousel slider",
"ctr",
"preact",
"slider"
],
"repository": {
"type": "git",
"url": "https://github.com/artisin/SmoothSlider"
},
"bugs": {
"url": "https://github.com/artisin/SmoothSlider/issues"
},
"scripts": {
"clean": "rm -rf dist/*",
"commit": "git cz",
"deploy": "gh-pages -d example-build",
"dev": "yarn run clean && NODE_ENV=dev webpack -w",
"link": "yarn link && yarn link smoothslider",
"postinstall": "npm run link",
"prepublish": "yarn run link && yarn run test",
"release:major": "yarn run test && bumped release major",
"release:minor": "yarn run test && bumped release minor",
"release:patch": "yarn run test && bumped release patch",
"test": "jest --no-cache"
},
"dependencies": {
"object-get": "2.1.0",
"preact": "8.1.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-jest": "^20.0.3",
"babel-loader": "^7.0.0",
"babel-plugin-transform-es2015-modules-commonjs": "6.24.1",
"babel-plugin-transform-react-jsx": "6.24.1",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "6.24.1",
"browser-sync": "^2.18.12",
"browser-sync-webpack-plugin": "^1.2.0",
"bumped": "^0.10.4",
"bumped-changelog": "^0.3.10",
"bumped-terminal": "^0.7.3",
"chai": "4.0.2",
"commitizen": "^2.9.6",
"css-loader": "^0.28.4",
"ctr-loader": "0.2.1",
"cz-customizable-te": "^5.1.0",
"extract-text-webpack-plugin": "^2.1.2",
"file-loader": "0.11.2",
"fs-extra": "3.0.1",
"gh-pages": "1.0.0",
"html-webpack-plugin": "2.29.0",
"image-webpack-loader": "3.3.1",
"jest": "^20.1.0-alpha.3",
"lodash": "4.17.4",
"mocha": "^3.4.2",
"object.entries": "1.0.4",
"preact-compat": "^3.15.0",
"preact-jsx-chai": "2.2.1",
"style-loader": "^0.18.2",
"webpack": "^3.0.0",
"webpack-node-externals": "^1.6.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable-te"
},
"cz-customizable": {
"config": "./.cz-config.js"
}
},
"jest": {
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/file-mock.js",
"^react$": "preact-compat",
"^react-dom$": "preact-compat"
},
"verbose": true,
"transform": {
"^.+\\.jsx$": "babel-jest",
"^.+\\.js$": "babel-jest"
},
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules"
],
"transformIgnorePatterns": [
"node_modules/(?!smoothslider)"
]
}
}