-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.66 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
60
{
"name": "if-exp",
"version": "2.0.2",
"description": "Conditional (if) expressions for JavaScript",
"main": "src/if-exp.js",
"keywords": [
"if",
"expression",
"conditional"
],
"scripts": {
"test": "mocha src/*.test.js",
"test-watch": "mocha -w src/*.test.js",
"test-coverage": "nyc --all --statements=100 --lines=100 --functions=100 --branches=100 --check-coverage --reporter=lcov --reporter=cobertura --report-dir=coverage -- mocha -R spec -t 100000 src/*.test.js",
"test-coverage-coveralls": "npm run test-coverage && cat ./coverage/lcov.info | coveralls",
"update": "updtr",
"changelog-init": "conventional-changelog -i CHANGELOG.md -s -r 0",
"changelog": "conventional-changelog -i CHANGELOG.md -s",
"changelog-git": "npm run changelog && git add CHANGELOG.md && git commit -m 'docs(changelog): updated' && git push origin master"
},
"nyc": {
"include": [
"src/*"
]
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015"
]
}
]
]
},
"repository": {
"type": "git",
"url": "https://github.com/FGRibreau/iff.git"
},
"author": "Francois-Guillaume Ribreau <npm@fgribreau.com> (http://fgribreau.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/FGRibreau/iff/issues"
},
"engines":{
"node": "6"
},
"homepage": "https://github.com/FGRibreau/iff",
"devDependencies": {
"chai": "^3.5.0",
"conventional-changelog": "^1.1.0",
"conventional-changelog-cli": "^1.2.0",
"coveralls": "^2.11.12",
"mocha": "^3.0.2",
"nyc": "^10.0.0",
"updtr": "^0.2.1"
}
}