-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.93 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.93 KB
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
{
"name": "webp-webpack-plugin",
"version": "1.2.6",
"description": "webpack plugin of making webp format file ",
"main": "dist/index.js",
"scripts": {
"test": "for v in 1 2 3; do npm run webpack $v; done;",
"webpack": "bash tests/config/webpack.sh $1",
"lint": "eslint --ext .js src tests",
"lint:fix": "npm run lint -- --fix",
"compile": "node_modules/.bin/babel src -d dist",
"prepublish": "npm run test && npm run compile",
"codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jiangtao/webp-webpack-plugin.git"
},
"config": {
"ghooks": {
"pre-commit": "npm run lint:fix"
}
},
"ava": {
"concurrency": 5,
"babel": "inherit",
"require": "babel-core/register"
},
"nyc": {
"exclude": [
"node_modules",
"tests/*.js",
"tests/**/*.js"
]
},
"keywords": [
"webp",
"webpack",
"plugin"
],
"author": "321jiangtao@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/jiangtao/webp-webpack-plugin/issues"
},
"homepage": "https://github.com/jiangtao/webp-webpack-plugin#readme",
"babel": {
"plugins": [
"transform-es2015-modules-commonjs",
"transform-async-to-generator",
"transform-class-properties"
]
},
"dependencies": {
"file-loader": "^1.1.5",
"file-type": "^7.3.0",
"minify": "^3.0.1",
"semver": "^5.4.1",
"sharp": "^0.18.1",
"url-loader": "^0.6.2",
"webpack": "^3.12.0"
},
"devDependencies": {
"ava": "^0.22.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.24.1",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"codecov": "^2.3.0",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"nyc": "^11.2.1"
}
}