-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.99 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
{
"name": "@djforth/lazyload-polyfill",
"version": "1.1.1",
"description": "A Lazyload polyfil that uses lozad to fill native lazyloading",
"main": "index.js",
"repository": "[email protected]:djforth/lazyload-polyfill.git",
"author": "Adrian Stainforth <[email protected]>",
"license": "MIT",
"scripts": {
"build": "NODE_ENV=production rollup -c",
"build:watch": "NODE_ENV=production rollup -c -w",
"lint": "eslint src/** --fix",
"lint:tests": "eslint spec/** --fix",
"sprites": "asset-pipeline-sprites --svginline",
"test": "jest --coverage --config jest.config.json",
"test:watch": "jest --watch --config jest.config.json"
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-object-rest-spread": "^7.7.7",
"@babel/plugin-syntax-dynamic-import": "^7.7.4",
"@babel/plugin-transform-destructuring": "^7.7.4",
"@babel/plugin-transform-regenerator": "^7.7.5",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.7",
"@djforth/jest-matchers": "^2.2.1",
"@rollup/plugin-replace": "^2.3.0",
"babel-core": "^7.0.0-bridge",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-plugin-istanbul": "^5.2.0",
"babel-preset-es2015-rollup": "^3.0.0",
"browserslist": "^4.8.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-jest": "^23.3.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^24.9.0",
"prettier": "^1.19.1",
"rollup": "^1.28.0",
"rollup-plugin-analyzer": "^3.2.2",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-uglify": "^6.0.4"
},
"dependencies": {
"@djforth/utilities": "^1.1.0",
"core-js": "3.6.1",
"lozad": "^1.14.0"
}
}