-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.12 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
{
"name": "persistent-ts",
"version": "0.1.0",
"description": "Persistent data structures for TypeScript.",
"main": "index.ts",
"scripts": {
"lint": "eslint src/**",
"test": "jest",
"prettier:check": "prettier --parser typescript --list-different \"src/**/*.{ts,tsx}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/cronokirby/persistent-ts.git"
},
"keywords": [
"persistent",
"functional",
"typescript"
],
"author": "Lúcás Meier",
"license": "MIT",
"bugs": {
"url": "https://github.com/cronokirby/persistent-ts/issues"
},
"homepage": "https://github.com/cronokirby/persistent-ts#readme",
"devDependencies": {
"@types/jest": "^24.0.13",
"@typescript-eslint/eslint-plugin": "^1.10.2",
"@typescript-eslint/parser": "^1.10.2",
"eslint": "^5.16.0",
"fast-check": "^1.15.1",
"jest": "^24.8.0",
"prettier": "^1.18.2",
"ts-jest": "^24.0.2",
"typescript": "^3.5.1"
},
"jest": {
"transform": {
".ts": "ts-jest"
},
"testRegex": "\\.test.ts$",
"moduleFileExtensions": [
"ts",
"js"
]
}
}