-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
106 lines (106 loc) · 2.82 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
{
"name": "react-js-css-loaders",
"version": "1.0.6",
"description": "React CSS Loaders",
"main": "dist/bundle.cjs.js",
"module": "dist/bundle.esm.js",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c",
"format": "eslint \"**/*.{js,jsx}\" && prettier \"**/*.js\"",
"format:fix": "eslint \"**/*.js\" --fix && prettier \"**/*.js\" --write",
"storybook": "start-storybook -p 9001 -c storybook",
"storybook:build": "build-storybook -c storybook",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:coveralls": "jest --coverage && coveralls < coverage/lcov.info",
"test:staged": "jest --findRelatedTests",
"predeploy": "npm run storybook:build",
"deploy": "gh-pages -d build",
"prepublishOnly": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run format:fix",
"npm run test:staged",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/amareshsm/react-js-css-loaders.git"
},
"keywords": [
"loading icons",
"react",
"css",
"spinners",
"react loading icon",
"react js loading icon",
"react loaders"
],
"author": "AMARESH S M ",
"license": "ISC",
"bugs": {
"url": "https://github.com/amareshsm/react-js-css-loaders/issues"
},
"homepage": "https://github.com/amareshsm/react-js-css-loaders",
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@babel/preset-react": "^7.10.4",
"@rollup/plugin-babel": "^5.1.0",
"@storybook/addon-options": "^5.3.19",
"@storybook/react": "^6.5.15",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.1.0",
"babel-loader": "^8.1.0",
"coveralls": "^3.1.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.20.3",
"eslint-plugin-standard": "^4.0.1",
"gh-pages": "^3.1.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"lint-staged": "^10.2.11",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "^16.13.1",
"rimraf": "^3.0.2",
"rollup": "^2.22.2",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-terser": "^6.1.0"
},
"dependencies": {
"prettier": "^2.0.5"
},
"peerDependencies": {
"react": ">=16.2"
},
"engines": {
"node": ">=8"
},
"jest": {
"moduleNameMapper": {
"\\.css$": "<rootDir>/mocks/styles.js"
}
}
}