-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 798 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 798 Bytes
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
{
"name": "algorithms",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "nodemon",
"test": "jest",
"cli": "./node_modules/.bin/ts-node ./cli.ts"
},
"keywords": [],
"repository": {
"type": "git",
"url": "https://github.com/psy-man/algorithms.git"
},
"author": "Eugene Filipyev <91motivator@gmail.com>",
"devDependencies": {
"@types/jest": "^22.1.4",
"@types/node": "^9.4.0",
"commander": "^2.14.1",
"jest": "^22.4.2",
"nodemon": "^1.14.12",
"ts-jest": "^22.4.1",
"ts-node": "^4.1.0",
"typescript": "^2.7.1"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"\\.ts$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": ".*\\.spec.ts$"
}
}