forked from bigcommerce/bigpay-client-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 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
{
"name": "@bigcommerce/bigpay-client",
"version": "5.4.0",
"description": "JavaScript client for Bigpay",
"license": "MIT",
"main": "lib/index.js",
"files": [
"lib/"
],
"scripts": {
"prebuild": "rm -rf lib",
"build": "NODE_ENV=production babel src --out-dir lib --source-maps",
"lint": "eslint src test",
"prepare": "npm run build",
"prerelease": "npm run lint && npm test",
"release": "gulp bump",
"postrelease": "npm publish --access public && git push --follow-tags",
"test": "karma start --single-run",
"test:watch": "karma start"
},
"repository": {
"type": "git",
"url": "[email protected]:bigcommerce/bigpay-client-js.git"
},
"author": "BigCommerce",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-loader": "^6.2.5",
"babel-plugin-istanbul": "^3.0.0",
"babel-preset-es2015": "^6.14.0",
"eslint": "^3.4.0",
"eslint-config-airbnb-base": "^7.0.0",
"eslint-loader": "^1.5.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsdoc": "^2.3.1",
"gulp": "^4.0.0",
"gulp-bump": "^2.4.0",
"gulp-conventional-changelog": "^1.1.0",
"gulp-git": "^2.4.2",
"gulp-prompt": "^0.2.0",
"gulp-touch": "^1.0.1",
"jasmine-ajax": "^3.2.0",
"jasmine-core": "^2.5.1",
"karma": "^1.2.0",
"karma-coverage": "^1.1.1",
"karma-jasmine": "^1.0.2",
"karma-mocha-reporter": "^2.1.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"lodash": "^4.17.4",
"phantomjs-prebuilt": "^2.1.15",
"semver": "^5.3.0",
"webpack": "^1.13.2"
},
"dependencies": {
"@bigcommerce/form-poster": "^1.4.0",
"deep-assign": "^2.0.0",
"object-assign": "^4.1.0"
}
}