-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 1.87 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": "binary-common-utils",
"version": "6.0.2",
"description": "Utilities that are used to develop binary.com apps",
"main": "lib/index.js",
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"transform-async-to-generator"
]
},
"scripts": {
"test": "./node_modules/.bin/eslint src/ && ./node_modules/.bin/_mocha --require ./src/mochaHelper.js --compilers js:babel-core/register ./src/__tests__/*.js",
"debug": "./node_modules/.bin/mocha --require ./src/mochaHelper.js --compilers js:babel-core/register --debug-brk ./src/__tests__/*.js",
"prepublish": "gulp",
"publish-latest": "npm test && npm version from-git && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aminmarashi/binary-common-utils.git"
},
"author": "Amin Marashi",
"license": "MIT",
"bugs": {
"url": "https://github.com/aminmarashi/binary-common-utils/issues"
},
"homepage": "https://github.com/aminmarashi/binary-common-utils#readme",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-async-to-generator": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.23.0",
"binary-live-api": "28.1.0",
"chai": "^3.5.0",
"eslint": "^3.15.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.9.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"jsdom": "^9.11.0",
"jsdom-global": "^2.1.1",
"mocha": "^3.2.0",
"ws": "^2.0.3"
},
"peerDependencies": {
"binary-live-api": ">= 25.1.0",
"babel-core": "^6.23.1",
"babel-preset-es2015": "^6.22.0",
"babel-register": "^6.23.0"
},
"dependencies": {
"immutable": "^3.8.1"
}
}