-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.94 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.94 KB
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
{
"name": "sireg",
"version": "0.3.1",
"description": "Regression testing for websites",
"author": "Fabian Keller <contact@fabian-keller.de>",
"homepage": "https://github.com/FaKeller/sireg",
"license": "MIT",
"bin": "./bin/sireg",
"repository": {
"type": "git",
"url": "git@github.com:FaKeller/sireg.git"
},
"scripts": {
"test": "jest --forceExit",
"build": "rimraf dist && yarn run ts:build && yarn run ts:lint",
"start": "yarn run build && yarn run watch",
"ts:build": "tsc",
"ts:watch": "tsc -w",
"ts:lint": "tslint -c tslint.json -p tsconfig.json",
"watch": "yarn run ts:watch",
"package": "yarn run build && pkg dist/src/sireg-cli.js -t node8-macos,node8-win,node8-linux -o dist/bin/sireg"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(\\.(test|spec))\\.(ts|tsx)$",
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/src/test/"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"setupFiles": [
"./dist/src/jest-setup.js"
]
},
"devDependencies": {
"@types/colors": "1.1.3",
"@types/commander": "2.11.0",
"@types/jest": "21.1.4",
"@types/lodash": "4.14.78",
"@types/node": "8.0.47",
"@types/papaparse": "4.1.31",
"@types/request": "2.0.6",
"@types/strftime": "0.9.2",
"@types/winston": "2.3.6",
"ajv-cli": "2.1.0",
"jest": "21.2.1",
"pkg": "4.2.5",
"rimraf": "2.6.2",
"ts-jest": "21.1.3",
"ts-mockito": "2.2.5",
"tslint": "5.8.0",
"typescript": "2.5.3"
},
"dependencies": {
"ajv": "5.2.3",
"colors": "1.1.2",
"commander": "2.11.0",
"inversify": "4.3.0",
"lodash": "4.17.11",
"papaparse": "5.2.0",
"reflect-metadata": "0.1.10",
"request": "2.88.0",
"rxjs": "5.5.0",
"sitemapper": "2.1.13",
"strftime": "0.10.0",
"winston": "2.4.0"
}
}