-
Notifications
You must be signed in to change notification settings - Fork 111
/
package.json
89 lines (89 loc) · 2.31 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
{
"name": "react-loading",
"version": "2.0.3",
"description": "React loading component",
"main": "dist/react-loading.js",
"scripts": {
"prepush": "yarn test",
"build": "rimraf dist && mkdir dist && webpack",
"prepublish": "npm run build",
"start": "webpack -w",
"pretest": "npm run lint",
"test": "jest",
"lint": "eslint ./lib/**.jsx --color",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"travis": "npm run build && npm test && npm run coveralls",
"release": "np"
},
"repository": {
"type": "git",
"url": "https://github.com/fakiolinho/react-loading.git"
},
"keywords": [
"loading",
"react",
"react-component"
],
"author": {
"name": "Fakiolas Marios",
"email": "m.fakiolas@hotmail.gr",
"url": "https://about.me/marios.fakiolas"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/fakiolinho/react-loading/issues"
},
"homepage": "https://github.com/fakiolinho/react-loading",
"peerDependencies": {
"prop-types": "^15.6.0",
"react": ">=0.14.0"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"coveralls": "^2.12.0",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.2",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.4.0",
"husky": "^0.14.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^21.2.1",
"node-libs-browser": "^2.0.0",
"np": "^2.14.1",
"prop-types": "^15.5.8",
"raf": "^3.4.0",
"raw-loader": "^0.5.1",
"react": ">=0.14.0",
"react-dom": ">=0.14.0",
"react-test-renderer": "^16.0.0",
"rimraf": "^2.6.1",
"webpack": "^3.8.1"
},
"jest": {
"setupFiles": [
"raf/polyfill",
"<rootDir>/jest.setup.js"
],
"transform": {
".*": "<rootDir>/node_modules/babel-jest"
},
"moduleNameMapper": {
"\\.svg$": "identity-obj-proxy"
},
"verbose": true,
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"<rootDir>/lib/svg/",
"<rootDir>/node_modules/"
]
}
}