forked from mhnpd/react-loader-spinner
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.66 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
{
"name": "react-loader-spinner-svg",
"version": "1.0.1",
"description": " react-spinner-loader provides simple React.js spinner component which can be implemented for async wait operation before data load to the view.",
"unpkg": "dist/index.js",
"jsdelivr": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/vishalsaugat/react-loader-spinner"
},
"author": {
"name": "Vishal Saugat",
"url": "https://vishalsaugat.xyz"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/vishalsaugat/react-loader-spinner"
},
"homepage": "https://mhnpd.github.io/react-loader-spinner/",
"keywords": [
"react-component",
"loader",
"spinner",
"react"
],
"company": {
"name": "Vishal Saugat",
"url": "https://vishalsaugat.xyz"
},
"options": {
"mocha": "--require scripts/mocha_runner src/**/__tests__/**/*.js"
},
"scripts": {
"prepublish": "babel --plugins transform-es2015-modules-umd src --ignore __tests__ --out-dir ./dist --copy-files",
"build": "babel --plugins transform-es2015-modules-umd src --ignore __tests__ --out-dir ./dist --copy-files",
"lint": "eslint ./src",
"lintfix": "eslint ./src --fix",
"testonly": "mocha $npm_package_options_mocha",
"test": "npm run lint && npm run testonly",
"test-watch": "npm run testonly -- --watch --watch-extensions js",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook --output-dir ./docs"
},
"devDependencies": {
"@storybook/addon-actions": "^5.1.10",
"@storybook/addon-centered": "^5.1.10",
"@storybook/addon-links": "^5.1.10",
"@storybook/addons": "^5.1.10",
"@storybook/react": "^5.1.10",
"babel-cli": "^6.6.4",
"babel-core": "^6.7.4",
"babel-eslint": "^10.0.2",
"babel-loader": "^7.1.5",
"babel-plugin-transform-es2015-modules-umd": "^6.6.5",
"babel-polyfill": "^6.7.4",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"chai": "^4.1.2",
"enzyme": "^3.3.0",
"eslint": "*",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-equimper": "*",
"eslint-config-prettier": "*",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-prettier": "*",
"eslint-plugin-react": "^7.10.0",
"mocha": "^6.2.0",
"nodemon": "^1.17.2",
"prettier": "*",
"redux-logger": "*",
"sinon": "^7.3.2"
},
"peerDependencies": {
"prop-types": "^15.6.2",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"prop-types": "^15.6.2"
}
}