-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
120 lines (120 loc) · 3.54 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
116
117
118
119
120
{
"name": "ship-components-buttons",
"version": "1.2.1",
"description": "Material Design React Buttons",
"main": "src/index.js",
"scripts": {
"start": "grunt server",
"build": "grunt build",
"test": "npm run lint && ./node_modules/.bin/jest src/ --coverage",
"watch:tests": "./node_modules/.bin/jest src/ --coverage --watch",
"lint": "./node_modules/.bin/eslint src/ --ext .jsx --ext .js --ignore-pattern __tests__ --max-warnings 0",
"lint:fix": "./node_modules/.bin/eslint src/ --ext .jsx --ext .js --fix",
"coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js -v"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ship-components/ship-components-buttons.git"
},
"engines": {
"node": ">=6"
},
"keywords": [
"react",
"buttons",
"css modules"
],
"author": "Isaac Suttell <[email protected]>",
"contributors": [
{
"name": "Isaac Suttell",
"email": "[email protected]"
},
{
"name": "Sepand Assadi",
"email": "[email protected]"
},
{
"name": "Jared Boone",
"email": "[email protected]"
},
{
"name": "Chris Orescan",
"email": "[email protected]"
},
{
"name": "Adam Sas",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ship-components/ship-components-buttons/issues"
},
"homepage": "https://github.com/ship-components/ship-components-buttons#readme",
"dependencies": {
"classnames": "^2.1.3",
"prop-types": ">=15.5",
"react": ">=15.5",
"react-dom": ">=15.5",
"react-transition-group": "^2.9.0",
"ship-components-highlight-click": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.6.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^24.8.0",
"babel-loader": "^8.0.6",
"codacy-coverage": "^3.4.0",
"coveralls": "^3.0.0",
"css-loader": "^3.0.0",
"eslint": "^5.16.0",
"eslint-config-ship-components": "^1.5.1",
"eslint-loader": "^2.1.2",
"eslint-plugin-react": "^7.13.0",
"grunt": "^1.0.4",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-eslint": "^21.1.0",
"grunt-webpack": "^3.1.3",
"jest": "^24.8.0",
"jest-css-modules": "^2.1.0",
"mini-css-extract-plugin": "^0.7.0",
"postcss-calc": "^7.0.1",
"postcss-color-function": "^4.1.0",
"postcss-color-hex-alpha": "^5.0.3",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.1.2",
"postcss-simple-vars": "^5.0.2",
"regenerator-runtime": "^0.13.2",
"strict-loader": "^1.2.0",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.1.3",
"webpack": "^4.34.0",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.7.2"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest",
".*": "<rootDir>/node_modules/jest-css-modules"
},
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "identity-obj-proxy"
},
"transformIgnorePatterns": [
"node_modules/?!(ship-components-highlight-click)"
],
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/classnames",
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/fbjs",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils"
]
}
}