-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.93 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
{
"name": "givens",
"version": "1.3.9",
"description": "Easy test setup without side effects",
"main": "dist/getGiven.js",
"types": "dist/getGiven.d.ts",
"repository": "github:enova/givens",
"files": [
"dist",
"setup.js"
],
"scripts": {
"prepack": "make dist",
"clean": "make clean",
"install:tests": "npm-run-all install:tests:**",
"install:tests:manual": "cd test/manual-tests && npm ci",
"install:tests:js-jest": "cd test/integration-tests/javascript/jest && npm ci",
"install:tests:js-mocha": "cd test/integration-tests/javascript/mocha && npm ci",
"install:tests:js-jasmine": "cd test/integration-tests/javascript/jasmine && npm ci",
"install:tests:ts-jest": "cd test/integration-tests/typescript/jest && npm ci",
"lint": "npm-run-all --continue-on-error lint:**",
"lint:src": "eslint ./src/**.* --ext .ts",
"lint:unit": "eslint ./test/unit-tests/**.* --ext .ts",
"lint:manual": "eslint ./test/manual-tests/**.* --ext .js",
"lint:js-jest": "eslint ./test/integration-tests/javascript/jest/test/**.* --ext .js",
"lint:js-mocha": "eslint ./test/integration-tests/javascript/mocha/test/**.* --ext .js",
"lint:js-jasmine": "eslint ./test/integration-tests/javascript/jasmine/spec/**.* --ext .js",
"lint:ts-jest": "eslint ./test/integration-tests/typescript/jest/test/**.* --ext .ts",
"test": "npm-run-all --continue-on-error test:**",
"test:unit": "jest",
"test:manual": "cd test/manual-tests && npm run coverage",
"test:js-jest": "cd test/integration-tests/javascript/jest && npm test",
"test:js-mocha": "cd test/integration-tests/javascript/mocha && npm run coverage",
"test:js-jasmine": "cd test/integration-tests/javascript/jasmine && npm run coverage",
"test:ts-jest": "cd test/integration-tests/typescript/jest && npm test"
},
"keywords": [
"jest",
"mocha",
"given",
"let",
"test",
"testing",
"unit",
"rspec",
"testing",
"typescript",
"javascript"
],
"author": "Mason Boeman",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/node": "^13.13.38",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"copyfiles": "^2.4.1",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jasmine": "^4.1.1",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-mocha": "^4.1.0",
"jest": "^26.6.3",
"npm-run-all": "^4.1.5",
"source-map-url-cli": "^0.1.0",
"ts-jest": "^26.4.4",
"typescript": "^3.9.7"
},
"jest": {
"automock": true,
"verbose": true,
"roots": [
"<rootDir>/src",
"<rootDir>/test/unit-tests"
],
"testMatch": [
"**/?(*.)+(spec|test).+(ts|tsx|js)"
],
"transform": {
"^.+\\.ts$": "ts-jest"
},
"coverageReporters": [
"lcov"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts"
]
}
}