-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 1.16 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
{
"name": "alga-ts",
"version": "1.0.2",
"description": "Algebraic graphs in TypeScript",
"files": [
"lib"
],
"main": "lib/alga.js",
"typings": "lib/alga.d.ts",
"scripts": {
"test": "jest --passWithNoTests",
"prebuild": "npm test",
"build": "rm -rf ./lib && tsc --build tsconfig.production.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YBogomolov/alga-ts.git"
},
"keywords": [
"algebraic",
"graphs",
"fp-ts",
"fp",
"graph"
],
"author": "Yuriy Bogomolov <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/YBogomolov/alga-ts/issues"
},
"homepage": "https://github.com/YBogomolov/alga-ts#readme",
"peerDependencies": {
"fp-ts": "^2.4.3"
},
"devDependencies": {
"@types/jest": "^25.1.1",
"fast-check": "^1.22.1",
"fp-ts": "^2.4.3",
"husky": "^4.2.1",
"jest": "^25.1.0",
"ts-jest": "^25.2.0",
"tslint": "^6.0.0",
"typescript": "^3.7.5"
},
"dependencies": {},
"jest": {
"testEnvironment": "jsdom",
"preset": "ts-jest"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
}
}