-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
112 lines (112 loc) · 3.7 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
{
"name": "san-mui",
"version": "1.0.13",
"description": "A Set of SAN Components that Implement Google's Material Design",
"author": "ecomfe",
"main": "./lib/index.js",
"module": "./es/index.js",
"browser": "./lib/index.js",
"scripts": {
"dev": "cross-env NODE_ENV=dev node tool/dev-server.js",
"lint": "fecs src --type=js --rule --reporter=baidu",
"test": "cross-env NODE_ENV=test babel-node -- ./node_modules/.bin/karma start test/karma.conf.babel.js",
"test-ci": "cross-env NODE_ENV=test-ci babel-node -- ./node_modules/.bin/karma start test/karma.conf.babel.js",
"coverage": "npm run clean:coverage && cross-env NODE_ENV=test babel-node -- ./node_modules/.bin/karma start test/karma.coverage.conf.babel.js --single-run",
"clean": "rimraf lib && rimraf dist",
"clean:coverage": "rimraf test/coverage",
"prepublish": "npm run build",
"build": "npm run clean && NODE_ENV=production gulp build",
"build-doc": "cross-env NODE_ENV=dev babel-node tool/build-doc.js",
"deploy-doc": "gh-pages -d public",
"coveralls": "shx cat ./test/coverage/report-html/lcov.info | coveralls"
},
"dependencies": {
"classnames": "^2.2.5",
"dom-align": "^1.6.2",
"kolor": "^1.1.9",
"moment": "^2.18.1",
"san": "^3.2.3"
},
"peerDependencies": {
"san": "3.2.3"
},
"devDependencies": {
"autoprefixer": "^6.6.1",
"babel-cli": "^6.22.2",
"babel-loader": "^6.2.10",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-external-helpers-insert-require": "^1.0.2",
"babel-plugin-istanbul": "^3.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-1": "^6.22.0",
"body-parser": "^1.16.0",
"chai": "^3.5.0",
"chalk": "^1.1.3",
"cheerio": "^0.22.0",
"compression-webpack-plugin": "^0.3.2",
"coveralls": "^2.11.15",
"cross-env": "^3.1.4",
"css-loader": "^0.25.0",
"eslint-friendly-formatter": "^2.0.7",
"eventsource-polyfill": "^0.9.6",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"gh-pages": "^1.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-babel-external-helpers": "^2.0.2",
"gulp-clean": "^0.3.2",
"gulp-postcss": "^6.4.0",
"gulp-sourcemaps": "^2.4.0",
"gulp-stylus": "^2.6.0",
"html-loader": "^0.4.4",
"html-webpack-plugin": "^2.26.0",
"http-proxy-middleware": "^0.17.3",
"karma": "^1.4.0",
"karma-babel-preprocessor": "^6.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.1",
"material-design-icons": "~3.0.1",
"mocha": "^3.2.0",
"normalize.css": "^6.0.0",
"ora": "^1.2.0",
"phantomjs-prebuilt": "^2.1.14",
"postcss-loader": "^1.3.0",
"raw-loader": "^0.5.1",
"rider": "^2.0.0",
"rimraf": "^2.5.4",
"san-loader": "^0.0.4",
"san-markdown-loader": "^1.0.0-alpha.8",
"san-router": "^1.0.0",
"shx": "^0.2.2",
"style-loader": "^0.13.1",
"stylus": "^0.54.5",
"stylus-loader": "^2.4.0",
"url-loader": "^0.5.7",
"webpack": "^1.14.0",
"webpack-dev-middleware": "^1.9.0",
"webpack-hot-middleware": "^2.15.0",
"webpack-merge": "^2.4.0"
},
"engines": {
"node": ">= 4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ecomfe/san-mui.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ecomfe/san-mui/issues"
},
"homepage": "https://github.com/ecomfe/san-mui#readme"
}