forked from mlaursen/react-md
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 3.99 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
121
122
123
124
125
126
127
{
"name": "react-md",
"version": "1.3.4",
"description": "React material design components",
"main": "./lib",
"module": "./es",
"jsnext:main": "./es",
"files": [
"es/",
"lib/",
"dist/",
"src/",
"index.d.ts",
"LICENSE"
],
"scripts": {
"lint:fix": "eslint -c .eslintrc --fix src",
"lint:styles": "scss-lint src/scss",
"lint:scripts": "eslint -c .eslintrc src",
"lint": "npm-run-all -p lint:styles lint:scripts",
"test": "npm run test:tsc && cross-env BABEL_ENV=test jest",
"test:tsc": "npm run tsd && tsc index.d.ts",
"test:watch": "cross-env BABEL_ENV=test jest --watch",
"test:docs": "cd docs && npm run test",
"test:docs:watch": "cd docs && npm run test:watch",
"test:all": "npm-run-all test test:docs",
"tsd": "cpx \"./src/js/**/*.d.ts\" ./lib",
"css-bundles": "node ./makeBundles.js",
"dev": "npm-run-all -p build:watch docs",
"dev:minimal": "npm-run-all -p build:es:watch docs:minimal",
"docs": "cd docs && npm run clean && npm run doc-dbs && npm-run-all -p start:dev watch:all",
"docs:minimal": "cd docs && npm run start:dev",
"prebuild": "rimraf es lib dist",
"build:watch": "npm-run-all -p build:cjs:watch build:es:watch",
"build:cjs": "cross-env NODE_ENV=development BABEL_ENV=cjs babel src/js -d lib --ignore=__tests__,__mocks__",
"build:cjs:watch": "npm run build:cjs -- -w",
"build:es": "cross-env NODE_ENV=development BABEL_ENV=es babel src/js -d es --ignore=__tests__,__mocks__",
"build:es:watch": "npm run build:es -- -w",
"build:umd": "node src/tools/build.js",
"build": "npm-run-all -p tsd css-bundles build:cjs build:es build:umd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mlaursen/react-md.git"
},
"keywords": [
"react-md",
"react",
"material-design",
"material-ui"
],
"author": "Mikkel Laursen <mlaursen03@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mlaursen/react-md/issues"
},
"homepage": "https://github.com/mlaursen/react-md#readme",
"devDependencies": {
"@types/react": "^16.0.5",
"autoprefixer": "^7.1.4",
"babel-cli": "^6.26.0",
"babel-core": "6",
"babel-eslint": "^8.0.1",
"babel-jest": "^21.2.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-react-remove-prop-types": "^0.4.8",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"bluebird": "^3.5.1",
"cpx": "^1.5.0",
"cross-env": "^3.1.4",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"enzyme-to-json": "^3.1.1",
"eslint": "^3.3.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.1.0",
"eslint-plugin-react": "^6.1.2",
"gzip-size": "^4.0.0",
"intl": "^1.2.5",
"jest-cli": "^21.2.1",
"node-sass": "^4.5.3",
"npm-run-all": "^4.1.1",
"postcss": "^6.0.13",
"pretty-bytes": "^4.0.2",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"rimraf": "^2.5.4",
"rollup": "^0.50.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^2.0.1",
"typescript": "^2.2.1"
},
"dependencies": {
"classnames": "^2.2.5",
"prop-types": "15.6.0",
"react-motion": "^0.5.0",
"react-prop-types": "^0.4.0",
"react-swipeable-views": "^0.12.8",
"react-transition-group": "^1.2.1",
"resize-observer-polyfill": "^1.4.2"
},
"peerDependencies": {
"react": ">= 15.3.0 || 16.0.0",
"react-dom": ">= 15.3.0 || 16.0.0"
},
"jest": {
"cacheDirectory": "./.jest-cache",
"setupFiles": [
"<rootDir>/src/testShim.js",
"<rootDir>/src/beforeTest.js"
],
"roots": [
"<rootDir>/src"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}