-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.16 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
{
"name": "@mitodl/mdl-react-components",
"version": "0.0.3",
"description": "React component implementations for material library",
"scripts": {
"test": "./scripts/test/js_test.sh",
"coverage": "COVERAGE=1 ./scripts/test/js_test.sh",
"codecov": "CODECOV=1 ./scripts/test/js_test.sh",
"watch": "WATCH=1 ./scripts/test/js_test.sh",
"lint": "node ./node_modules/eslint/bin/eslint.js ./src",
"flow": "flow check",
"fmt": "LOG_LEVEL= prettier-eslint --write --no-semi --ignore 'flow/**/*.js' 'src/**/*.js'",
"fmt:check": "prettier-eslint --list-different --no-semi --ignore 'flow/**/*.js' 'src/**/*.js'",
"build": "rollup -c",
"prepare": "yarn build"
},
"main": "lib/index.js",
"files": [
"lib/*"
],
"repository": {
"type": "git",
"url": "github.com/mitodl/mdl-react-components"
},
"keywords": [
"mdl",
"material",
"react"
],
"author": "",
"license": "BSD-3-Clause",
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0"
},
"devDependencies": {
"@material/button": "0.44.1",
"@material/dialog": "0.44.1",
"@material/radio": "0.44.1",
"ava": "0.25.0",
"babel-core": "6.26.3",
"babel-eslint": "7.2.3",
"babel-plugin-external-helpers": "6.22.0",
"babel-plugin-syntax-dynamic-import": "6.18.0",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-flow-strip-types": "6.22.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.7.0",
"babel-preset-latest": "6.24.1",
"babel-preset-react": "6.24.1",
"codecov": "3.8.3",
"enzyme": "3.11.0",
"enzyme-adapter-react-15": "1.4.4",
"eslint": "4.19.1",
"eslint-config-google": "0.14.0",
"eslint-config-mitodl": "0.2.1",
"eslint-plugin-ava": "4.5.1",
"eslint-plugin-babel": "4.1.2",
"eslint-plugin-flow-vars": "0.5.0",
"eslint-plugin-flowtype": "2.50.3",
"eslint-plugin-mocha": "4.12.1",
"eslint-plugin-react": "7.35.0",
"flow-bin": "0.241.0",
"flow-typed": "2.6.2",
"jsdom": "11.12.0",
"jsdom-global": "3.0.2",
"nyc": "11.9.0",
"prettier-eslint-cli": "4.7.1",
"react": "15.7.0",
"react-dom": "15.7.0",
"react-test-renderer": "15.7.0",
"rollup": "0.68.2",
"rollup-plugin-babel": "3.0.7",
"sinon": "4.5.0"
},
"peerDependencies": {
"@material/button": "^0.26.0 || ^0.44.0",
"@material/dialog": "^0.26.0 || ^0.44.0",
"@material/radio": "^0.30.0 || ^0.44.0",
"react": "^15.6.0",
"react-dom": "^15.6.0"
},
"ava": {
"concurrency": 2,
"files": "src/**/*_test.js",
"require": [
"babel-register",
"babel-polyfill",
"jsdom-global/register"
],
"babel": "inherit"
},
"babel": {
"presets": [
[
"env",
{
"modules": false
}
],
"latest",
"react"
],
"ignore": [
"node_modules/**"
],
"plugins": [
"transform-flow-strip-types",
"transform-object-rest-spread",
"transform-class-properties",
"syntax-dynamic-import",
"./scripts/test/configure.js"
]
}
}