-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.76 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
69
{
"name": "sails-service-stripe",
"description": "Service for Sails framework with Payment features",
"main": "lib/index.js",
"version": "1.1.0",
"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/aarondancer/sails-service-stripe.git"
},
"keywords": [
"sails",
"service",
"payment",
"stripe"
],
"authors": [
"ghaiklor",
"aarondancer"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/aarondancer/sails-service-stripe/issues"
},
"homepage": "https://github.com/aarondancer/sails-service-stripe#readme",
"dependencies": {
"babel-plugin-lodash": "^3.2.9",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"lodash": "^4.16.6",
"stripe": "4.12.0"
},
"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.14",
"cz-conventional-changelog": "1.2.0",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.6.0",
"isparta": "4.0.0",
"mocha": "3.1.2",
"semantic-release": "^4.3.5",
"sinon": "1.17.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"tag": "latest"
},
"release": {
"branch": "master"
},
"engines": {
"node": ">=4"
}
}