-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.37 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "fixinator",
"version": "0.1.0",
"description": "A TypeScript implementation of the FIX (Financial Information eXchange) protocol. Includes all supported and unsupported versions from 2.7 and above.",
"main": "index.js",
"directories": {
"doc": "docs",
"example": "examples",
"src": "src",
"test": "test"
},
"scripts": {
"prebuild": "npm run clean:dist",
"build": "npm run compile:src",
"postbuild": "npm run transpile",
"compile:src": "tsc --target es6 --outDir dist/es6",
"compile:examples": "tsc examples/*.demo.ts --target es6",
"compile:tests": "tsc src/**/*.spec.ts --target es6",
"lint": "tslint .",
"pretest": "npm run clean:src",
"test": "npm run test:js",
"test:ts": "nyc mocha --opts ./test/mocha.opts-ts",
"pretest:js": "rm -rf .test_container && tsc --target es6 --outDir .test_container",
"test:js": "nyc mocha --opts ./test/mocha.opts-js",
"securitycheck": "nsp check",
"predoc": "npm run clean:docs",
"doc": "typedoc --out docs/autogen --includeDeclarations --excludeExternals",
"pretranspile": "rm -rf dist/es5 && mkdir dist/es5",
"transpile": "babel dist/es6 --out-file dist/es5/fixinator.js",
"posttranspile": "npm run uglify",
"preuglify": "rm -rf dist/fixinator.min.js",
"uglify": "uglifyjs dist/es5/fixinator.js --compress --mangle --mangle-props --source-map --output dist/fixinator.min.js",
"prethewholenine": "npm run clean",
"thewholenine": "npm run lint && npm run build && npm run test && npm run securitycheck",
"clean": "npm run clean:dist & npm run clean:docs & npm run clean:misc & npm run clean:examples & npm run clean:src",
"clean:dist": "rm -rf dist",
"clean:docs": "rm -rf docs/autogen",
"clean:misc": "rm -f driver.js driver.js.map index.d.ts index.js index.js.map npm-debug.log",
"clean:examples": "find ./examples -type f -name '*.js' -name '*.js.map' -exec rm {} +",
"clean:src": "find ./src -type f -name '*.js' -exec rm {} +"
},
"nyc": {
"include": [
"src/**/*.spec.ts",
"test/**/*.spec.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/haleyga/fixinator.git"
},
"keywords": [
"fix",
"financial",
"protocol",
"communication",
"exchange",
"information"
],
"author": "Graham Haley <graham.andrew.haley@gmail.com> (https://haleyhousellc.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/haleyga/fixinator/issues"
},
"homepage": "https://github.com/haleyga/fixinator#readme",
"devDependencies": {
"@types/chai": "^4.0.0",
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.31",
"@types/uuid": "^3.0.0",
"babel-cli": "^6.24.1",
"babel-preset-env": "^1.5.2",
"chai": "^4.0.2",
"mocha": "^3.4.2",
"nsp": "^2.6.3",
"nyc": "^11.0.3",
"source-map-support": "^0.4.15",
"ts-node": "^3.1.0",
"tslint": "^5.4.3",
"typedoc": "^0.7.1",
"typescript": "^2.3.4",
"uglify-js": "^3.0.17",
"iconv-lite": "^0.4.18"
},
"dependencies": {
"@types/mongodb": "^2.2.11",
"@types/winston": "^2.3.4",
"mongodb": "^2.2.31",
"uuid": "^3.1.0",
"winston": "^2.3.1",
"ws": "^3.1.0"
}
}