-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 923 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
41
42
43
44
45
46
47
48
49
50
{
"name": "lnkd",
"version": "0.0.1",
"description": "Graph transformation toolkit",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kumu/lnkd.git"
},
"keywords": [
"graph",
"networks",
"node",
"edge",
"toolkit",
"kumu"
],
"author": "Ryan Mohr",
"license": "SEE LICENSE",
"bugs": {
"url": "https://github.com/kumu/lnkd/issues"
},
"homepage": "https://github.com/kumu/lnkd#readme",
"devDependencies": {
"@types/jest": "^22.2.3",
"jest": "^22.4.3",
"ts-jest": "^22.4.4",
"typescript": "^2.8.3"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "src/.*test\\.ts$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}