forked from logotype/fixparser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.43 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
{
"name": "fixparser",
"version": "2.4.1",
"description": "FIX 5.0SP2 Parser",
"main": "./fixparser.js",
"module": "./src/FIXParser.js",
"browser": "./browser.js",
"repository": {
"type": "git",
"url": "https://github.com/logotype/fixparser.git"
},
"scripts": {
"eslint": "eslint *.babel.js src test",
"build": "webpack -p",
"executor": "babel-node examples/example_executor.js",
"example": "babel-node examples/example.js",
"server": "babel-node examples/example_server.js",
"perf": "node perf/Perf-FIXParser.js",
"test": "jest"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.6.1",
"cli-table": "^0.3.1",
"codeclimate-test-reporter": "^0.5.0",
"eslint": "^4.18.2",
"eslint-plugin-babel": "5.1.0",
"eslint-plugin-import": "^2.9.0",
"jest": "^22.4.2",
"rollup": "^0.56.5",
"webpack": "4.6.0",
"webpack-cli": "^2.0.10",
"yargs": "11.0.0"
},
"keywords": [
"FIX Protocol",
"FIX Parser",
"FIX Client",
"FIX Server",
"FIX5.0SP2",
"FIX",
"Financial Information eXchange"
],
"author": "Victor Norgren",
"license": "MIT",
"dependencies": {},
"jest": {
"collectCoverage": false,
"collectCoverageFrom": [
"**/*.{js}",
"!**/node_modules/**",
"!**/src/spec/**"
],
"coverageReporters": [
"lcov"
]
}
}