-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpackage.json
81 lines (81 loc) · 2.5 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
{
"name": "@lottiefiles/lottie-interactivity",
"description": "This is a small effects and interactivity library written to be paired with the Lottie Web Player",
"version": "1.6.2",
"license": "MIT",
"main": "./dist/lottie-interactivity.min.js",
"module": "./dist/lottie-interactivity.es.js",
"types": "./dist/lottie-interactivity.d.ts",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.5",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-proposal-private-methods": "^7.8.3",
"@babel/preset-env": "^7.9.5",
"@changesets/cli": "^2.22.0",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@playwright/test": "^1.16.3",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-strip": "^1.3.2",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"fastify": "^3.23.1",
"fastify-static": "^4.5.0",
"folio": "^0.3.18",
"husky": "^4.2.5",
"lint-staged": "^10.1.7",
"prettier": "^2.0.5",
"rollup": "^2.6.1",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^5.3.0",
"typescript": "^4.9.5"
},
"dependencies": {
"core-js": "3"
},
"scripts": {
"dev": "rollup -c -w",
"build": "npx tsc; rollup -c",
"lint": "eslint . --ext .ts,.tsx,.js",
"lint:fix": "eslint . --ext .ts,.tsx,.js --fix",
"prepublishOnly": "yarn build",
"release": "semantic-release",
"test": "playwright test",
"serve": "node ./tests/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LottieFiles/lottie-interactivity.git"
},
"author": "Jawish Hameed <jawish@lottiefiles.com>",
"contributors": [
"Karam Ali <karam@lottiefiles.com>"
],
"bugs": {
"url": "https://github.com/LottieFiles/lottie-interactivity/issues"
},
"homepage": "https://github.com/LottieFiles/lottie-interactivity#readme",
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{css,scss,md}": [
"prettier --write"
],
"src/**/*.{js,jsx,ts,tsx,json}": [
"eslint . --ext .ts,.tsx,.js --fix"
]
}
}