-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
106 lines (106 loc) · 3.13 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
105
106
{
"name": "@egjs/flicking-plugins",
"version": "4.7.1",
"description": "Ready-to-use plugins for @egjs/flicking",
"module": "./dist/plugins.esm.js",
"main": "./dist/plugins.js",
"types": "./declaration/index.d.ts",
"sideEffects": false,
"scripts": {
"start": "concurrently \"rollup -w --config ./rollup.config.dev.js\" \"http-serve\"",
"build": "rm -rf ./dist ./declaration && rollup -c && npm run declaration && npm run css && npm run printsizes",
"declaration": "rm -rf declaration && tsc -p tsconfig.declaration.json",
"printsizes": "print-sizes ./dist --exclude=\\.map",
"css": "node config/build-css",
"lint": "eslint 'src/**/*.ts'",
"release": "release-helper",
"test": "karma start",
"test:chrome": "karma start --chrome",
"coverage": "karma start --coverage && print-coveralls --sort=desc",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"demo:build": "npm run build && cpx 'dist/**/*' demo/release/latest/dist --clean",
"demo:prebuild-version": "cpx 'dist/**/*' demo/release/$npm_package_version/dist --clean",
"demo:prebuild-latest": "cpx 'dist/**/*' demo/release/latest/dist --clean",
"demo:predeploy": "npm run build && npm run demo:prebuild-version && npm run demo:prebuild-latest",
"demo:deploy": "npm run demo:predeploy && gh-pages -a -d demo/ --remote upstream"
},
"keywords": [
"flicking",
"slide",
"swipe",
"css",
"parallax",
"fade",
"autoplay",
"snap",
"flick",
"egjs",
"eg"
],
"author": {
"name": "NAVER Corp."
},
"namespace": {
"eg": "eg"
},
"repository": {
"type": "git",
"url": "https://github.com/naver/egjs-flicking-plugins"
},
"homepage": "https://github.com/naver/egjs-flicking-plugins",
"license": "MIT",
"bugs": {
"url": "https://github.com/naver/egjs-flicking-plugins/issues"
},
"browserslist": [
"last 2 version",
"ie 9-11",
"not op_mini all"
],
"peerDependencies": {
"@egjs/flicking": "^4.1.0"
},
"devDependencies": {
"@egjs/build-helper": "0.0.5",
"@egjs/flicking": "^4.4.2",
"@egjs/release-helper": "0.0.3",
"@types/chai": "^4.0.10",
"@types/karma-chai": "^0.1.1",
"@types/mocha": "^5.2.5",
"@types/node": "^14.0.27",
"@types/sinon": "^7.0.3",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/eslint-plugin-tslint": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"autoprefixer": "^9.8.6",
"bulma": "^0.9.2",
"chai": "^4.2.0",
"concurrently": "^6.2.0",
"coveralls": "^3.1.0",
"cpx": "^1.5.0",
"eslint": "^7.25.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^33.0.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"gh-pages": "^2.0.1",
"hammer-simulator": "^0.0.1",
"http-serve": "^1.0.1",
"karma": "^3.1.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon": "^1.0.5",
"karma-typescript-egjs": "^4.0.0",
"karma-viewport": "^1.0.4",
"mocha": "^5.2.0",
"postcss-clean": "^1.2.2",
"postcss-js": "^3.0.3",
"print-coveralls": "^1.2.2",
"print-sizes": "^0.1.0",
"sinon": "^7.2.3",
"tslib": "^2.3.0",
"tslint": "^5.13.1",
"typescript": "^4.2.3"
}
}