-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
97 lines (97 loc) · 2.43 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
{
"name": "louv",
"version": "2.0.0",
"description": "Image and text complex yet smoothly animated transformations simplified: gallery, scenarios and morphs",
"keywords": [
"gallery",
"carousel",
"3d",
"animations",
"transform",
"async",
"scenario",
"morph",
"transformation"
],
"author": {
"name": "Pawel Przezwanski",
"email": "[email protected]",
"url": "http://www.ho-gi.com/"
},
"homepage": "",
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}
],
"engines": {
"node": ">= 0.4.0"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist",
"lib"
],
"sideEffects": false,
"scripts": {
"clean": "rimraf dist",
"build": "run-s clean && run-p build:es build:cjs build:lib:es && run-s copy:style",
"build:lib:es": "BABEL_ENV=es babel src -d lib",
"build:es": "NODE_ENV=es rollup -c",
"build:cjs": "NODE_ENV=cjs rollup -c",
"copy:style": "cp src/louv.scss lib/",
"test": "jest --config=jest.config.json",
"test-watch": "jest --config=jest.config.json --watch",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls"
},
"lint-staged": {
"src/*.js": [
"yarn test"
],
"test/*.js": [
"yarn test"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn test",
"pre-push": "yarn test",
"...": "..."
}
},
"dependencies": {
"deep-extend": "^0.6.0",
"fast-deep-equal": "^2.0.1",
"frame-q": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/plugin-external-helpers": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
"@babel/preset-env": "^7.7.7",
"@rollup/plugin-commonjs": "^11.0.1",
"@rollup/plugin-multi-entry": "^3.0.0",
"@rollup/plugin-node-resolve": "^7.0.0",
"babel-eslint": "^8.0.2",
"babel-plugin-styled-components": "^1.3.0",
"coveralls": "^3.0.9",
"eslint": "5.0.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jest": "^23.6.0",
"husky": "^4.0.10",
"jest": "^24.9.0",
"lint-staged": "^10.0.1",
"np": "^5.2.1",
"npm-run-all": "^4.1.2",
"raf": "^3.4.1",
"rollup": "^1.29.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-filesize": "^6.2.1",
"rollup-plugin-terser": "^5.2.0"
}
}