-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
98 lines (98 loc) · 2.57 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
{
"name": "md-components",
"version": "17.0.0",
"description": "Material Design React components",
"main": "lib/index.js",
"module": "es/index.js",
"style": "style.css",
"files": [
"scss",
"lib",
"es",
"style.css"
],
"scripts": {
"stylelint": "stylelint src/scss/*.scss",
"build:css": "node-sass src/scss/index.scss style.css",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build": "npm run build:css && npm run build:commonjs && npm run build:es",
"watch:css": "node-sass -w src/scss/index.scss style.css",
"watch:es": "cross-env BABEL_ENV=es babel -w src --out-dir es",
"watch:commonjs": "cross-env BABEL_ENV=commonjs babel -w src --out-dir lib",
"dev": "npm-run-all --parallel watch:*",
"examples": "cd examples && npm run start",
"test": "standard && npm run stylelint && nyc mocha src/js/**/test/test.js",
"prepublish": "npm run build && cpx './src/scss/*.*' ./scss"
},
"repository": {
"type": "git",
"url": "git@github.com:hbm/md-components.git"
},
"keywords": [
"react",
"components",
"material",
"design"
],
"author": "HBM",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"coveralls": "^3.0.0",
"cpx": "^1.5.0",
"cross-env": "^5.1.4",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"jsdom": "11.9.0",
"mocha": "^5.1.1",
"node-sass": "^4.8.3",
"npm-run-all": "^4.1.2",
"nyc": "^11.7.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-router-dom": "^4.2.2",
"react-test-renderer": "^16.3.2",
"standard": "^11.0.1",
"stylelint": "^9.2.0",
"stylelint-config-recommended-scss": "^3.2.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-scss": "^3.0.1",
"tarball-extract": "0.0.6"
},
"nyc": {
"reporter": [
"lcov",
"text-summary"
],
"require": [
"babel-register",
"./test/.setup.js"
],
"exclude": [
"**/test.js",
"test"
]
},
"dependencies": {
"attr-accept": "^1.1.0",
"classnames": "^2.2.5",
"keycode": "^2.1.9",
"prop-types": "^15.5.10",
"react-transition-group": "^2.3.1"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"es/",
"src/js/icon/index.js",
"build/",
"bin/gen.js"
]
}
}