-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
68 lines (68 loc) · 2.52 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
{
"name": "image-process",
"version": "0.0.2",
"description": "图像裁剪,图像缩放(最邻近插值,双线性差值,三次卷积插值),图像滤镜(灰度,模糊,锐化,卡通),应用(边缘识别,水印)等",
"homepage": "https://github.com/dailc/image-process",
"repository": {
"type": "git",
"url": "https://github.com/dailc/image-process.git"
},
"bugs": {
"url": "https://github.com/dailc/image-process/issues"
},
"main": "index.js",
"scripts": {
"test": "npm run test:cover",
"build": "node_modules/.bin/gulp default --gulpfile build/gulpfile.js",
"watch": "node_modules/.bin/gulp watch --gulpfile build/gulpfile.js",
"dev": "npm run build && npm run watch",
"test:cover": "node_modules/.bin/karma start test/unit/karma.cover.config.js",
"test:unit": "node_modules/.bin/karma start test/unit/karma.unit.config.js",
"test:dev": "node_modules/.bin/karma start test/unit/karma.dev.config.js",
"test:eslint": "npm run eslint:report",
"eslint": "node_modules/.bin/eslint ./src ./test ./build",
"eslint:fix": "node_modules/.bin/eslint ./src ./test ./build --fix",
"eslint:report": "node_modules/.bin/eslint ./src ./test ./build -f html -o ./_report/eslint.html"
},
"author": "dailc",
"license": "MIT",
"dependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"chai": "^4.1.2",
"eslint": "^4.6.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.3.0",
"gulp": "^3.9.1",
"gulp-clean-css": "^3.9.0",
"gulp-concat": "^2.6.1",
"gulp-eslint": "^4.0.0",
"gulp-header": "^1.8.9",
"gulp-rename": "^1.2.2",
"gulp-sequence": "^0.4.6",
"gulp-stylus": "^2.6.0",
"gulp-uglify": "^3.0.0",
"karma": "^1.7.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.1",
"karma-htmlfile-reporter": "^0.3.5",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-webpack": "^2.0.4",
"mocha": "^4.0.1",
"rollup": "^0.49.3",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-eslint": "^4.0.0",
"uglify-js": "^3.1.0"
}
}