forked from ghaiklor/sails-service-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.43 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
{
"name": "sails-service-image",
"version": "0.0.0-semantic-release",
"description": "Service for Sails framework with Image features",
"license": "MIT",
"main": "lib/index.js",
"author": "ghaiklor",
"homepage": "https://github.com/ghaiklor/sails-service-image#readme",
"scripts": {
"compile": "babel src --out-dir lib",
"coveralls": "cat coverage/lcov.info | coveralls",
"prepublish": "npm run compile",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "babel-node ./node_modules/.bin/isparta cover _mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/ghaiklor/sails-service-image.git"
},
"keywords": [
"sails",
"service",
"image"
],
"bugs": {
"url": "https://github.com/ghaiklor/sails-service-image/issues"
},
"dependencies": {
"bluebird": "3.4.6",
"gm": "1.22.0",
"lodash": "4.17.2"
},
"devDependencies": {
"babel-cli": "6.18.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-preset-es2015": "6.18.0",
"chai": "3.5.0",
"coveralls": "2.11.15",
"cz-conventional-changelog": "1.2.0",
"isparta": "4.0.0",
"mocha": "3.2.0",
"semantic-release": "6.3.2",
"sinon": "1.17.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"tag": "latest"
},
"release": {
"branch": "master"
}
}