-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
102 lines (102 loc) · 2.7 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
{
"name": "react-load-animations",
"version": "1.0.4",
"description": "React loading animations using css",
"main": "dist/bundle.cjs.js",
"module": "dist/bundle.esm.js",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "rollup -c",
"lint": "eslint '**/*.js'",
"lint:fix": "prettier-eslint '**/*.js' --write",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls",
"test:staged": "jest --findRelatedTests",
"storybook": "start-storybook -c .storybook",
"prestorybook:build": "rm -rf storybook-static",
"storybook:build": "build-storybook -c .storybook",
"predeploy": "yarn storybook:build",
"deploy": "gh-pages -d storybook-static",
"prepublishOnly": "yarn build"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"yarn run lint:fix",
"yarn test:staged",
"git add"
]
},
"repository": {
"type": "git",
"url": "https://github.com/Alexanderdunlop/react-load-animations.git"
},
"keywords": [
"react",
"css",
"load",
"loading",
"animation",
"animations",
"spinners"
],
"author": "Alexanderdunlop <alexjamesdunlop@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Alexanderdunlop/react-load-animations/issues"
},
"homepage": "https://alexanderdunlop.github.io/react-load-animations/",
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@storybook/react": "^5.0.6",
"babel-jest": "^24.7.1",
"babel-loader": "^8.0.5",
"coveralls": "^3.0.3",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jest": "^22.4.1",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-standard": "^4.0.0",
"gh-pages": "^2.0.1",
"husky": "^1.3.1",
"jest": "^24.7.1",
"lint-staged": "^8.1.5",
"prettier-eslint": "^8.8.2",
"prettier-eslint-cli": "^4.7.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6",
"rimraf": "^2.6.3",
"rollup": "^1.9.0",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-node-resolve": "^4.2.1",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-terser": "^4.0.4"
},
"peerDependencies": {
"react": ">=16.2"
},
"engines": {
"node": ">=8"
},
"jest": {
"moduleNameMapper": {
"\\.css$": "<rootDir>/mocks/styles.js"
}
}
}