This repository has been archived by the owner on Sep 2, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.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": "binary-utils",
"version": "4.24.0",
"description": "Utils for binary.com",
"main": "lib/",
"scripts": {
"build": "gulp",
"prepublish": "npm run build",
"test": "jest",
"test:coverage": "jest --coverage",
"test:coveralls": "npm run test:coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"test:eslint": "eslint src/**/*.js",
"test:flow": "flow check --all --show-all-errors",
"test:watch": "jest --watch",
"test:full": "npm run test:eslint && npm run test:flow && npm run test:coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/binary-com/binary-utils.git"
},
"author": "Boris Yankov",
"babel": {
"presets": [
"latest",
"stage-3"
],
"sourceMaps": true,
"plugins": [
"transform-flow-strip-types"
]
},
"license": "MIT",
"bugs": {
"url": "https://github.com/binary-com/binary-utils/issues"
},
"homepage": "https://github.com/binary-com/binary-utils#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-stage-3": "^6.17.0",
"binary-test-data": "^1.2.0",
"coveralls": "^2.11.15",
"eslint": "^3.11.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-flowtype": "^2.28.2",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "~2.2.3",
"eslint-plugin-react": "^6.7.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-flatten": "^0.3.1",
"immutable": "^3.8.1",
"jest-cli": "^17.0.3",
"sinon": "^1.17.6"
},
"dependencies": {
"gulp-babel": "^6.1.2"
}
}