-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 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
68
69
{
"name": "@tgillespie/graph",
"version": "0.5.0",
"description": "",
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/TimothyGillespie/JavaScriptGraph.git"
},
"scripts": {
"build": "npm run build:linux",
"build:linux": "rm -rf ./lib && tsc",
"build:windows": "rd ./lib && tsc",
"test": "jest",
"mutation-test": "stryker run",
"format": "prettier --write \"src/**/*.ts\" \"./.prettierrc\"",
"lint": "tslint -p tsconfig.json",
"prepublishOnly": "npm run build && npm test && npm run lint",
"preversion": "npm run format && npm run lint && npm run test",
"version": "git add -A src && git add -A testUtil",
"postversion": "git push && git push --tags"
},
"author": "Timothy Gillespie",
"license": "GPL-3.0",
"devDependencies": {
"@stryker-mutator/core": "^5.6.1",
"@stryker-mutator/jest-runner": "^5.6.1",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.178",
"@types/lodash.clonedeep": "^4.5.6",
"jest": "^27.5.1",
"lodash": "^4.17.21",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.5.5"
},
"jest": {
"collectCoverage": true,
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.test.json"
}
}
},
"dependencies": {
"@tgillespie/hash-data-structures": "^1.2.0",
"lodash.clonedeep": "^4.5.0"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}