forked from mciastek/sal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.01 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
{
"name": "sal.js",
"version": "0.8.5",
"description": "Performance focused, lightweight scroll animation library",
"main": "dist/sal.js",
"repository": {
"type": "git",
"url": "https://github.com/mciastek/sal.git"
},
"bugs": {
"url": "https://github.com/mciastek/sal/issues"
},
"files": [
"dist/",
"src/",
"index.d.ts"
],
"licenses": [
{
"type": "MIT",
"url": "https://github.com/mciastek/sal/blob/master/LICENSE"
}
],
"keywords": [
"scroll",
"on scroll",
"animate",
"animations",
"animate on scroll",
"performance",
"css"
],
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"build": "NODE_ENV=production webpack",
"pretest": "./node_modules/.bin/eslint ./src/**/*.js",
"test": "NODE_ENV=test jest --verbose",
"test:watch": "NODE_ENV=test jest --verbose --watchAll"
},
"author": "Mirek Ciastek",
"license": "MIT",
"devDependencies": {
"@babel/plugin-transform-async-to-generator": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.14.0",
"@babel/runtime": "^7.14.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"core-js": "^3.11.1",
"css-loader": "^5.2.4",
"cssnano": "^5.0.2",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"html-webpack-plugin": "^5.3.1",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.6.0",
"node-sass": "^5.0.0",
"postcss": "^8.2.13",
"postcss-loader": "^5.2.0",
"postcss-preset-env": "^6.7.0",
"pug": "^3.0.2",
"pug-loader": "^2.4.0",
"puppeteer": "^9.0.0",
"sass-loader": "^11.0.1",
"size-plugin": "^2.0.2",
"style-loader": "^2.0.0",
"webpack": "^5.36.2",
"webpack-cli": "^4.6.0"
},
"jest": {
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
},
"moduleNameMapper": {
"\\.(css|scss)$": "<rootDir>/test/mocks/styleMock.js"
}
}
}