forked from wix-incubator/payments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.73 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
{
"name": "payments",
"version": "2.0.0",
"description": "Lists various payment methods. Used by Wix Restaurants for payment configuration.",
"main": "dist/index.js",
"scripts": {
"test": "mocha --compilers js:babel-register",
"lint": "eslint ./src ./test",
"posttest": "npm run lint",
"compile": "babel -d dist/ src/",
"compile-library": "webpack --output-library PaymentsMethods --output-library-target var dist bin/payments.src.js",
"prepublish": "npm test && npm run compile && npm run compile-library",
"build": "babel bin/payments.src.js | uglifyjs > bin/payments.js",
"release": "npm install @wix/wnpm-ci && wnpm-release -- --no-shrinkwrap && npm install bower-auto-release && bower-auto-release --dist bin"
},
"repository": {
"type": "git",
"url": "https://github.com/wix/payments"
},
"keywords": [
"wix",
"restaurants",
"payment",
"gateway"
],
"author": "Wix Restaurants",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/wix/payments/issues"
},
"homepage": "https://github.com/wix/payments",
"dependencies": {
"lodash": "^4.13.0"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.8.0",
"babel-plugin-transform-runtime": "^6.8.0",
"babel-plugin-transform-strict-mode": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-2": "^6.5.0",
"babel-register": "^6.8.0",
"babel-runtime": "^6.6.1",
"chai": "^3.5.0",
"eslint": "^3.9.0",
"babel-eslint": "^7.1.1",
"fs-extra": "^0.18.3",
"mocha": "^2.4.5",
"q": "^1.4.1"
},
"optionalDependencies": {
"uglify-js": "^3.0.10",
"webpack": "^1.13.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}