-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
59 lines (59 loc) · 1.69 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
56
57
58
59
{
"name": "match-when",
"version": "3.0.1",
"description": "match-when - Pattern matching for modern JavaScript",
"main": "match.js",
"scripts": {
"test": "mocha {**,*/**}.test.js",
"test-watch": "mocha -w {**,*/**}.test.js",
"test-coverage": "nyc --all --lines=96 --functions=92 --branches=94 --statements=96 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- mocha {**,*/**}.test.js",
"send-coverage": "cat ./coverage/lcov.info | coveralls",
"update": "updtr",
"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"
},
"engines": {
"node": ">=6"
},
"browserify": {
"transform": [
[
"babelify", {
"presets": [
"es2015"
]
}
]
]
},
"nyc": {
"exclude": [
"node_modules",
"dist",
"coverage",
"webpack.config.js",
"test"
]
},
"author": "Francois-Guillaume Ribreau <npm@fgribreau.com> (http://fgribreau.com/)",
"license": "MIT",
"devDependencies": {
"coveralls": "^2.11.12",
"chai": "^3.5.0",
"github-changes": "^1.0.2",
"mocha": "^3.0.2",
"nyc": "^8.1.0",
"updtr": "^0.2.1"
}
}