forked from FGRibreau/match-when
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.04 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
{
"name": "match-when",
"version": "2.0.0",
"description": "match-when - Pattern matching for modern JavaScript",
"main": "match.js",
"scripts": {
"test": "mocha {**,*/**}.test.js",
"test-watch": "mocha -w {**,*/**}.test.js",
"changelog": "github-changes --o $(node -p 'process.env.npm_package_repository_url.split(\"/\")[3];') --r $(node -p 'a=process.env.npm_package_repository_url.split(\"/\");a[a.length-1].split(\".\")[0]') --token $CHANGELOG_GITHUB_TOKEN_FG -f CHANGELOG.md",
"changelog-git": "npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master"
},
"keywords": [
"pattern-matching",
"pattern matching",
"pattern",
"match",
"when"
],
"repository": {
"type": "git",
"url": "https://github.com/FGRibreau/match-when.git"
},
"author": "Francois-Guillaume Ribreau <[email protected]> (http://fgribreau.com/)",
"license": "MIT",
"devDependencies": {
"chai": "^3.4.1",
"github-changes": "^1.0.0",
"mocha": "^2.3.4"
}
}