forked from dufourgilles/node-emberplus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·105 lines (105 loc) · 3.11 KB
/
package.json
File metadata and controls
executable file
·105 lines (105 loc) · 3.11 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
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": "node-emberplus",
"version": "3.0.8",
"description": "Javascript implementation of the Ember+ automation protocol",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"compile": "rimraf lib && tsc -p .",
"compile:watch": "tsc -w -p .",
"tslint": "tslint --project tslint.json --fix",
"tslint:nofix": "tslint --project tslint.json",
"test": "jest --forceExit --detectOpenHandles",
"test:badges": "npm run jest-coverage-badges output ./badges",
"test:coverage": "jest --coverage --forceExit --detectOpenHandles && npm run test:badges",
"build": "npm run compile && npm run tslint:nofix && npm run test:coverage",
"jest-coverage-badges": "jest-coverage-badges"
},
"author": "Gilles Dufour (dufour.gilles@gmail.com)",
"files": ["lib"],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/dufourgilles/node-emberplus.git"
},
"engines": {
"node": ">=10.13.0"
},
"devDependencies": {
"@types/jest": "^24.0.19",
"@types/node": "^12.7.12",
"ghooks": "2.0.4",
"jest": "^24.9.0",
"jest-cli": "^24.9.0",
"jest-coverage-badges": "1.1.2",
"jest-create-mock-instance": "^1.1.0",
"jest-jenkins-reporter": "^1.0.2",
"jest-junit-reporter": "^1.1.0",
"jest-serial-runner": "1.1.0",
"rimraf": "3.0.0",
"ts-jest": "^24.1.0",
"ts-node": "^8.4.1",
"tslint": "^5.20.0",
"tslint-loader": "^3.5.4",
"typescript": "^3.6.4"
},
"dependencies": {
"@types/asn1": "^0.2.0",
"@types/long": "^4.0.0",
"@types/safer-buffer": "2.1.0",
"gdnet-asn1": "1.0.0",
"long": "^4.0.0",
"reflect-metadata": "0.1.13",
"smart-buffer": "^3.0.3",
"typedi": "0.8.0",
"winston": "^2.1.1",
"winston-color": "^1.0.0",
"yargs": "^17.5.1"
},
"config": {
"ghooks": {
"pre-commit": "npm run tslint:nofix"
}
},
"jest": {
"verbose": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"testPathIgnorePatterns": [
"/coverage",
"/src/test"
],
"testResultsProcessor": "./node_modules/jest-junit-reporter",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"coverageThreshold": {
"global": {
"branches": 20,
"functions": 20,
"lines": 20,
"statements": -150
}
},
"collectCoverageFrom": [
"src/**/*.ts",
"!src/fixture/*.ts",
"!src/tools/*.ts",
"!src/ber.ts"
],
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"runner": "jest-serial-runner"
}
}