-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.04 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.04 KB
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
{
"name": "fcase",
"version": "1.0.0",
"description": "Functional patter matching for typescript/javascript",
"main": "build/index.js",
"scripts": {
"test": "ts-node ./tests/simpletests.ts",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"posttest": "echo 'Please lint. `gts lint` is giving me creeps'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bwowsersource/fcase.git"
},
"keywords": [
"'pattern",
"matching'",
"'typescript'",
"'javascript'"
],
"author": "Akash",
"license": "MIT",
"bugs": {
"url": "https://github.com/bwowsersource/fcase/issues"
},
"homepage": "https://github.com/bwowsersource/fcase#readme",
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/node": "^14.11.2",
"@types/sinon": "^10.0.2",
"chai": "^4.3.4",
"colors": "^1.4.0",
"gts": "^3.1.0",
"sinon": "^11.1.1",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {}
}