UNPKG

1.85 kBJSONView Raw
1{
2 "name": "strest",
3 "version": "0.0.58",
4 "description": "Stress tests",
5 "main": "dist/index.js",
6 "scripts": {
7 "clean": "rimraf ./dist",
8 "lint": "tslint src/**/*.ts",
9 "prebuild": "npm run clean && npm run lint",
10 "build": "tsc",
11 "predev": "npm run build",
12 "dev": "cd dist && node strest.js ../test-example/*.strest.ts"
13 },
14 "bin": {
15 "strest": "dist/strest.js"
16 },
17 "keywords": [],
18 "author": "Dotan Simha <dotansimha@gmail.com>",
19 "license": "MIT",
20 "config": {
21 "commitizen": {
22 "path": "./node_modules/cz-conventional-changelog"
23 }
24 },
25 "jest": {
26 "verbose": false,
27 "collectCoverage": false,
28 "moduleFileExtensions": [
29 "ts",
30 "tsx",
31 "js"
32 ],
33 "transform": {
34 "^.+\\.(ts|tsx)$": "<rootDir>/src/transformer/typescript.js"
35 },
36 "testRegex": ".*?",
37 "testEnvironment": "node"
38 },
39 "dependencies": {
40 "@types/chalk": "^0.4.31",
41 "@types/expect": "^1.20.0",
42 "@types/jest": "^20.0.1",
43 "assert": "^1.4.1",
44 "chalk": "^1.1.3",
45 "commander": "^2.9.0",
46 "ddp": "^0.12.1",
47 "expect": "^1.20.2",
48 "filenamify": "^2.0.0",
49 "glob": "^7.1.1",
50 "jest": "^20.0.4",
51 "jest-cli": "^20.0.4",
52 "meteor-typings": "^1.3.1",
53 "mkdirp": "^0.5.1",
54 "node-fetch": "^1.7.1",
55 "reflect-metadata": "^0.1.9",
56 "request": "^2.79.0",
57 "rxjs": "^5.0.3",
58 "typescript": "^2.1.4"
59 },
60 "devDependencies": {
61 "@types/commander": "^2.3.31",
62 "@types/glob": "^5.0.30",
63 "@types/mkdirp": "^0.3.29",
64 "@types/node": "^6.0.54",
65 "@types/request": "^0.0.37",
66 "conventional-changelog": "^1.1.0",
67 "cz-conventional-changelog": "^1.2.0",
68 "nodemon": "^1.11.0",
69 "rimraf": "^2.5.4",
70 "tslint": "^4.0.2"
71 },
72 "typings": "dist/index.d.ts",
73 "typescript": {
74 "definition": "dist/index.d.ts"
75 }
76}