-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.47 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
{
"name": "leetcode",
"version": "1.0.0",
"description": "These are my attempts at [LeetCode problems](https://leetcode.com) <br>",
"main": "TwoSum.js",
"dependencies": {
"ajv": "^6.5.3"
},
"devDependencies": {
"@types/jest": "^23.3.5",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"jest": "^23.5.0",
"prettier": "^1.14.2",
"ts-jest": "^23.10.4",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"tslint-plugin-prettier": "^2.0.0",
"typescript": "^3.1.3"
},
"scripts": {
"test": "jest",
"build": "babel src -d lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jedster1111/LeetCodeProblems.git"
},
"jest": {
"verbose": true,
"rootDir": "",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/build/"
],
"collectCoverageFrom": [
"**/*.{js,jsx,ts,tsx}"
],
"coveragePathIgnorePatterns": [
"/coverage/",
"/build/"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jedster1111/LeetCodeProblems/issues"
},
"homepage": "https://github.com/jedster1111/LeetCodeProblems#readme"
}