-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
95 lines (95 loc) · 2.63 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
{
"name": "@lottiefiles/lottie-js",
"version": "0.4.2",
"description": "Lottie JSON model for Javascript/Typescript",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/LottieFiles/lottie-js",
"license": "MIT",
"keywords": [
"Lottie",
"Javascript",
"Lottie Object",
"Lottie JSON",
"LottieFiles"
],
"publishConfig": {
"access": "public"
},
"author": "Jawish Hameed <[email protected]>",
"scripts": {
"build": "yarn build:prod",
"build:dev": "cross-env NODE_ENV=development rollup -c -w",
"build:prod": "cross-env NODE_ENV=production rollup -c",
"clean": "del-cli --force coverage dist docs",
"docs": "typedoc --plugin none",
"lint": "eslint --fix --ext .ts,.js .",
"prepack": "yarn run lint && yarn clean && npm run build:prod",
"release": "yarn build && yarn changeset version && yarn changeset publish",
"version": "yarn changeset version",
"test": "jest",
"test:dev": "jest --watch --coverage"
},
"engines": {
"node": ">=12.0.0"
},
"dependencies": {
"cross-fetch": "^3.0.6",
"typedoc-github-wiki-theme": "0.2.0",
"typedoc-plugin-markdown": "3.6.1"
},
"devDependencies": {
"@changesets/cli": "2.17.0",
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@commitlint/prompt-cli": "11.0.0",
"@rollup/plugin-commonjs": "15.1.0",
"@rollup/plugin-node-resolve": "9.0.0",
"@rollup/plugin-strip": "2.0.0",
"@types/jest": "26.0.14",
"@types/node": "14.11.2",
"@typescript-eslint/eslint-plugin": "4.2.0",
"@typescript-eslint/parser": "4.2.0",
"clipboardy": "2.3.0",
"cross-env": "^7.0.2",
"del-cli": "3.0.1",
"esbuild": "0.7.13",
"eslint": "7.10.0",
"eslint-config-prettier": "6.12.0",
"eslint-plugin-jest": "24.0.2",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-simple-import-sort": "5.0.3",
"husky": "4.3.0",
"jest": "26.4.2",
"lint-staged": "10.4.0",
"prettier": "2.1.2",
"release-it": "^14.0.4",
"rollup": "2.29.0",
"rollup-plugin-dts": "1.4.13",
"rollup-plugin-esbuild": "2.5.0",
"rollup-plugin-filesize": "9.0.2",
"ts-jest": "26.4.0",
"typedoc": "0.19.2",
"typedoc-plugin-mermaid": "1.3.0",
"typescript": "4.0.3"
},
"files": [
"dist/**/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{css,json,md}": [
"prettier --write"
],
"src/**/*.{js,ts}": [
"eslint --fix"
]
}
}