-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 956 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 956 Bytes
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
{
"name": "tspatternmatching",
"version": "0.1.0",
"description": "Typesafe pattern matching emulation for TypeScript",
"main": "dist/tspatternmatching.js",
"files": [
"dist",
"tspatternmatching.ts",
"LICENSE",
"README.md"
],
"directories": {},
"typescript": {
"definition": "dist/tspatternmatching.d.ts"
},
"scripts": {
"test": "gulp test"
},
"repository": {
"type": "git",
"url": "https://github.com/lbialy/TsPatternMatching"
},
"keywords": [
"pattern matching",
"typesafe",
"typescript"
],
"author": {
"name": "Łukasz Biały",
"url": "https://github.com/lbialy"
},
"license": "MIT",
"devDependencies": {
"del": "^2.0.2",
"gulp": "^3.9.0",
"gulp-sourcemaps": "^1.6.0",
"gulp-tsc": "^1.1.1",
"gulp-tsd": "0.0.4",
"mocha": "^2.3.3",
"run-sequence": "^1.1.4",
"should": "^7.1.1",
"tsd": "^0.6.5",
"typescript": "^1.6.2"
}
}