-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
65 lines (65 loc) · 2.21 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
{
"name": "react-preloader-icon",
"version": "1.0.0",
"description": "SVG loading icons component for React.",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"browser": "dist/umd/preloader.umd.js",
"typings": "dist/index.d.ts",
"scripts": {
"prepare": "install-peers",
"dev": "chokidar --initial \"src/**/*.ts\" \"src/**/*.tsx\" -c \"yarn build\"",
"build:cjs": "tsc --module commonjs --outDir dist",
"build:esm": "tsc --module es2015 --outDir dist/esm",
"build:umd": "rollup -c rollup.config.js",
"build:cpf": "node copyfiles.js",
"tsc": "tsc -p tsconfig.json -d --allowJs --noEmit false --emitDeclarationOnly --declarationDir dist",
"build": "concurrently -n esm,cjs,umd,tsc,cpf \"yarn build:esm\" \"yarn build:cjs\" \"yarn build:umd\" \"yarn tsc\" \"yarn build:cpf\"",
"lint:pt": "prettier --print-width 120 --single-quote --trailing-comma es5 --write \"src/**/*.ts*\"",
"lint:ts": "tslint -p tsconfig.json src/**/*.ts{,x}",
"lint": "yarn lint:pt && yarn lint:ts --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UYEONG/react-preloader-icon.git"
},
"keywords": [
"preloader",
"svg",
"loading",
"icon"
],
"author": "UYEONG <[email protected]> (http://blog.coderifleman.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/UYEONG/react-preloader-icon/issues"
},
"homepage": "https://github.com/UYEONG/react-preloader-icon#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^11.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"chokidar-cli": "^2.1.0",
"concurrently": "^5.1.0",
"fs-extra": "^8.1.0",
"install-peers-cli": "^2.2.0",
"prettier": "^1.19.1",
"rollup": "^2.0.6",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-typescript2": "^0.26.0",
"tslint": "^6.1.0",
"tslint-config-airbnb": "^5.11.2",
"tslint-config-prettier": "^1.18.0",
"tslint-react": "^4.2.0",
"typescript": "^3.8.3"
},
"dependencies": {
"bezier-easing": "^2.1.0",
"tslib": "^1.11.1"
},
"peerDependencies": {
"@types/react": "^16.9.23",
"react": "^16.13.0",
"react-dom": "^16.13.0"
}
}