This repository has been archived by the owner on Nov 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
67 lines (67 loc) · 2.06 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
{
"name": "@lottiefiles/jlottie",
"version": "1.2.1",
"description": "Small size, low memory footprint, high performance Lottie player.",
"main": "dist/jlottie.min.cjs.js",
"module": "dist/jlottie.min.esm.js",
"browser": "dist/jlottie.min.js",
"repository": "https://github.com/LottieFiles/jlottie.git",
"author": "Mohamed Shaafiee <shaafiee@lottiefiles.com>",
"license": "MIT",
"files": [
"dist"
],
"scripts": {
"dev": "yarn clean && rollup -c --watch",
"build": "yarn clean && cross-env NODE_ENV=production rollup -c",
"clean": "shx rm -rf dist",
"lint": "eslint --fix \"**/*.{cjs,mjs,js}\"",
"format": "prettier --write .",
"bootstrap": "husky install",
"postmerge": "husky install",
"prepack": "yarn build",
"prepublish": "pinst --disable",
"postpublish": "pinst --enable",
"serve": "cp -r dist tests/public/ && node ./tests/server.js",
"test": "playwright test",
"test:reset": "shx rm -rf tests/__snapshots__",
"scrape": "node scrape.js"
},
"devDependencies": {
"@babel/core": "7.14.3",
"@babel/preset-env": "7.14.4",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "12.1.4",
"@playwright/test": "1.16.3",
"@rollup/plugin-babel": "5.3.0",
"@rollup/plugin-strip": "^2.0.1",
"cross-env": "^7.0.3",
"eslint": "^7.27.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-import-resolver-node": "0.3.4",
"eslint-plugin-import": "2.23.4",
"fastify": "3.17.0",
"fastify-static": "4.2.2",
"folio": "0.3.18",
"lint-staged": "^11.0.0",
"pinst": "^2.1.6",
"prettier": "^2.3.0",
"rollup": "^2.50.5",
"rollup-plugin-copy": "3.4.0",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-livereload": "2.0.0",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"shx": "^0.3.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"@changesets/cli": "2.17.0",
"execa": "^5.1.1",
"semver": "^7.3.5",
"which": "^2.0.2"
}
}