-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
57 lines (57 loc) · 1.58 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
{
"name": "uploadcare-loader",
"version": "1.1.0",
"description": "webpack loader with all the glory of http://uploadcare.com",
"main": "dist/index.js",
"files": [
"dist/"
],
"scripts": {
"lint": "eslint --ext .js --ext .jsx . || true",
"watch": "rm -rf dist && babel src --out-dir dist --watch",
"build": "rm -rf dist && babel src --out-dir dist",
"examples": "heatpack examples/index.js",
"test": "npm run lint",
"preversion": "npm run test",
"version": "npm run build",
"postversion": "git push && git push origin --tags && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/whitescape/uploadcare-loader.git"
},
"keywords": [
"webpack",
"loader",
"uploadcare",
"upload",
"cdn"
],
"author": "Roman Dubinin <[email protected]> (http://romanonthego.rocks/)",
"contributors": [
"Roman Pominov <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/whitescape/uploadcare-loader/issues"
},
"homepage": "https://github.com/whitescape/uploadcare-loader#readme",
"dependencies": {
"colors": "^1.1.2",
"loader-utils": "^0.2.12",
"lodash": "4.13.1",
"request": "2.69.0"
},
"devDependencies": {
"babel": "^6.3.26",
"babel-cli": "^6.4.0",
"babel-eslint": "^4.1.6",
"babel-plugin-add-module-exports": "0.1.2",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"eslint": "^1.5.1",
"eslint-cli": "^1.0.0",
"eslint-config-airbnb": "^0.1.0",
"eslint-plugin-react": "^3.5.0"
}
}