-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
115 lines (115 loc) · 3.18 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "react-md-spinner",
"version": "1.0.0",
"description": "Material Design Spinner components for React.js.",
"main": "dist/react-md-spinner.cjs.js",
"module": "dist/react-md-spinner.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm-run-all -s clean -p build:js build:types",
"build:js": "rollup -c",
"build:types": "tsc -p .",
"test": "jest",
"test:watch": "yarn test --watch",
"lint": "eslint \"**/*.+(ts|tsx)\"",
"format": "npm-run-all format:prettier format:eslint",
"format:prettier": "prettier --write \"**/*.+(ts|tsx|js|md|json)\"",
"format:eslint": "yarn lint --fix",
"clean": "rimraf dist storybook-static",
"storybook": "start-storybook -p 3000",
"storybook:build": "build-storybook",
"release": "np",
"postrelease": "npm-run-all storybook:build deploy",
"deploy": "gh-pages -d storybook-static"
},
"keywords": [
"react",
"react-component",
"material design",
"spinner",
"loader"
],
"files": [
"docs",
"dist",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tsuyoshiwada/react-md-spinner.git"
},
"author": "tsuyoshiwada",
"license": "MIT",
"bugs": {
"url": "https://github.com/tsuyoshiwada/react-md-spinner/issues"
},
"homepage": "https://github.com/tsuyoshiwada/react-md-spinner#readme",
"peerDependencies": {
"react": ">=16.3.0",
"react-dom": ">=16.3.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.3.3",
"@storybook/addon-actions": "^5.1.3",
"@storybook/addon-links": "^5.1.3",
"@storybook/addon-storyshots": "^5.1.3",
"@storybook/addon-storysource": "^5.1.3",
"@storybook/addons": "^5.1.3",
"@storybook/react": "^5.1.3",
"@testing-library/react": "^8.0.1",
"@types/jest": "^24.0.13",
"@types/react": "^16.8.19",
"@types/react-dom": "^16.8.4",
"@types/storybook__addon-actions": "^3.4.3",
"@types/storybook__react": "^4.0.2",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-macros": "^2.6.1",
"browser-sync": "^2.26.7",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.13.0",
"gh-pages": "^2.0.1",
"husky": "^2.4.0",
"jest": "^24.8.0",
"jest-dom": "^3.5.0",
"lint-staged": "^8.2.0",
"np": "^5.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6",
"require-context.macro": "^1.0.4",
"rimraf": "^2.6.3",
"rollup": "^1.14.4",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-node-resolve": "^5.0.1",
"typescript": "^3.5.1"
},
"dependencies": {
"stylis": "^3.5.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx,js,json,css,md}": [
"prettier --write",
"git add"
]
},
"jest": {
"roots": [
"test"
]
}
}