-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 loc) · 2.2 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
{
"name": "taxii-server",
"version": "0.3.12",
"description": "TAXII 2.0 server written for Node.js",
"scripts": {
"benchmark": "artillery --version && artillery run artillery-config.yml -k",
"build-ts": "tsc",
"checkup": "npm run clean && npm run build-ts && npm run lint && npm run docs && npm run coverage",
"clean": "rimraf dist/ tsdocs/ coverage/ .nyc_output/",
"coverage": "nyc --extension .ts --reporter=lcov --reporter=text-lcov npm test && nyc report",
"docs": "typedoc --out tsdocs --ignoreCompilerErrors --exclude '**/*.spec.ts' src/",
"help": "ts-node src/services/cli.service.ts --help",
"lint": "tslint src/**/*.ts",
"start": "ts-node src/server/server.ts",
"start:local": "npm start -- -- --host localhost --port 27018",
"start:deploy": "tsc && pm2-docker start dist/server/server.js -i max",
"start:dev": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec 'ts-node' src/server/server.ts",
"start:dev:local": "npm run start:dev -- --host localhost --port 27018",
"test": "env NODE_ENV=test mocha -r ts-node/register src/test/*.spec.ts",
"test:local": "env NODE_ENV=test MONGO_PORT=27018 MONGO_REPOSITORY=localhost npm test"
},
"nyc": {
"exclude": [
"src/**/*.spec.ts"
]
},
"keywords": [
"taxii",
"server",
"cti"
],
"author": "amasi@mitre.org",
"license": "ISC",
"dependencies": {
"@types/yargs": "^11.0.0",
"bluebird": "^3.5.1",
"express": "^4.16.2",
"express-paginate": "^0.3.0",
"mongoose": "^4.12.5",
"spdy": "^3.4.7",
"uuid": "^3.2.1",
"uuid-validate": "0.0.2",
"yargs": "^11.0.0"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/chai-http": "^3.0.4",
"@types/express": "^4.11.1",
"@types/mocha": "^5.2.0",
"@types/mongoose": "^5.0.10",
"@types/spdy": "^3.4.4",
"@types/uuid": "^3.4.3",
"@types/uuid-validate": "0.0.0",
"chai": "^4.1.2",
"chai-http": "^4.0.0",
"mocha": "^5.1.1",
"nodemon": "^1.17.3",
"nyc": "^11.7.1",
"pm2": "^2.10.4",
"rimraf": "^2.6.2",
"source-map-support": "^0.5.5",
"ts-node": "^6.0.1",
"tslint": "^5.9.1",
"typedoc": "^0.11.1",
"typescript": "^2.8.3"
}
}