-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.88 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
{
"name": "Dui",
"version": "0.1.7",
"description": "针对某部门的UI组件开发",
"main": "index.js",
"directories": {
"doc": "doc",
"example": "demo"
},
"scripts": {
"lint": "eslint src/js/component/dom.js",
"lint-html": "eslint src/js/*/*.js -f html -o ./reports/lint-results.html",
"lint-fix": "eslint --fix src/js/*/*.js",
"demo": "./node_modules/.bin/webpack-dev-server --inline --hot",
"build": "gulp",
"build-css": "gulp build-css",
"build-js": "gulp build-js",
"test": "node ./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --colors ./configs/mocha/**/*.test.js",
"coverage": "cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/henryzp/Dui"
},
"author": "zhangpu",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.7",
"babel-preset-es2015": "^6.18.0",
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"css-loader": "^0.25.0",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^3.12.0",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.2.0",
"extract-text-webpack-plugin": "^1.0.1",
"gulp": "^3.9.1",
"gulp-clean-css": "^2.0.13",
"gulp-concat": "^2.6.1",
"gulp-gzip": "^1.4.0",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.3.2",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.7",
"html-loader": "^0.4.4",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"open-browser-webpack-plugin": "0.0.3",
"sass-loader": "^4.0.2",
"style-loader": "^0.13.1",
"webpack": "^1.4.13",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"lodash": "^4.16.4"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}