-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.04 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
{
"name": "ship-components-textinput",
"version": "1.0.1",
"description": "Material Design Autosizing Text Input",
"main": "src/TextInput.jsx",
"scripts": {
"start": "grunt server",
"build": "npm run test && grunt build",
"lint": "./node_modules/eslint/bin/eslint.js src/*.jsx",
"test": "grunt lint && ./node_modules/jest-cli/bin/jest.js --coverage",
"coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js -v",
"travis": "npm install -g trevor && trevor"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ship-components/ship-components-textinput.git"
},
"keywords": [
"react"
],
"author": "Isaac Suttell <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ship-components/ship-components-textinput/issues"
},
"homepage": "https://github.com/ship-components/ship-components-textinput#readme",
"contributors": [
{
"name": "Isaac Suttell",
"email": "[email protected]"
},
{
"name": "Sepand Assadi",
"email": "[email protected]"
}
],
"devDependencies": {
"autoprefixer": "^6.1.0",
"babel": "^6.0.15",
"babel-core": "^6.1.4",
"babel-eslint": "^4.1.5",
"babel-jest": "^20.0.3",
"babel-loader": "^6.1.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.1.4",
"classnames": "^2.2.0",
"coveralls": "^2.11.4",
"css-loader": "^0.22.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.7.0",
"eslint": "^1.9.0",
"eslint-loader": "^1.1.1",
"eslint-plugin-react": "^3.8.0",
"extract-text-webpack-plugin": "^0.9.1",
"grunt": "^0.4.5",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^0.6.0",
"grunt-eslint": "^17.3.1",
"grunt-webpack": "^1.0.11",
"jest": "^19.0.2",
"jest-cli": "^19.0.2",
"jest-css-modules": "^1.1.0",
"object-assign": "^4.0.1",
"postcss-calc": "^6.0.2",
"postcss-color-function": "^2.0.0",
"postcss-color-hex-alpha": "^2.0.0",
"postcss-loader": "^0.7.0",
"postcss-nested": "^1.0.0",
"postcss-simple-vars": "^1.1.0",
"react": ">=16.0.0 <17.0.0",
"react-dom": ">=16.0.0 <17.0.0",
"react-test-renderer": ">=16.0.0 <17.0.0",
"strict-loader": "^0.1.2",
"style-loader": "^0.13.0",
"webpack": "^1.12.4",
"webpack-dev-server": "^1.12.1"
},
"jest": {
"setupFiles": [
"./jest-setup.js"
],
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"moduleNameMapper": {
"\\.(css)$": "<rootDir>/node_modules/jest-css-modules"
},
"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"
],
"transformIgnorePatterns": [
"/node_modules/(?!ship-components-*).+\\.js$"
]
},
"babelJest": {
"include": [
"src/**/*.@(js|jsx|es6)"
]
},
"dependencies": {
"ship-components-utility": "^2.1.1"
}
}