-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 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
{
"name": "rematch",
"description": "Pattern matching for JavaScript/TypeScript",
"main": "lib/rematch.js",
"typings": "lib/rematch.d.ts",
"dependencies": {
"lodash": "0.1.0 - 4.x",
"monapt": "0.3.2 - 0.5.x"
},
"devDependencies": {
"cracks": "^3.1.2",
"cz-conventional-changelog": "1.2.x",
"jasmine": "2.4.x",
"semantic-release": "4.3.x",
"typescript": "2.x",
"typings": "1.3.x"
},
"directories": {
"test": "spec"
},
"scripts": {
"build": "./node_modules/typescript/bin/tsc",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "jasmine"
},
"repository": {
"type": "git",
"url": "https://github.com/jiaweihli/rematch.git"
},
"keywords": [
"pattern",
"match",
"matching",
"switch",
"functional",
"case"
],
"author": "Kevin Li",
"license": "MIT",
"bugs": {
"url": "https://github.com/jiaweihli/rematch/issues"
},
"homepage": "https://github.com/jiaweihli/rematch#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"verifyRelease": "cracks"
}
}