-
Notifications
You must be signed in to change notification settings - Fork 101
/
package.json
40 lines (40 loc) · 862 Bytes
/
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
{
"name": "pretty-sort",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest"
},
"author": "Jiayi Hu <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/jest": "^19.2.2",
"@types/lodash": "^4.14.62",
"@types/node": "^7.0.12",
"jest": "^19.0.2",
"ts-jest": "^19.0.9",
"ts-node": "^3.0.2",
"tslint": "^5.1.0",
"typescript": "^2.2.2"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "algorithms/.*/.*\\.spec\\.ts$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"snapshotSerializers": [
"./tests/btree-serializer.js",
"./tests/matrix-serializer.js"
]
},
"dependencies": {
"lodash": "^4.17.4",
"min-heap": "^0.2.3"
}
}