-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.48 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
{
"name": "proportionate",
"version": "0.0.0-semantic-versioned",
"description": "Convenience methods for dealing with proportions (a part, share, or number considered in comparative relation to a whole).",
"main": "lib/index.js",
"scripts": {
"test": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- test -R spec",
"codacy": "cat ./coverage/lcov.info | ./node_modules/.bin/codacy-coverage -p .",
"codeclimate": "codeclimate-test-reporter < coverage/lcov.info",
"semantic-release": "semantic-release-gitlab"
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TSavo/proportionate-js.git"
},
"keywords": [
"Javascript",
"proportionate",
"arrays"
],
"author": "Travis Savo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/TSavo/proportionate-js/issues"
},
"homepage": "https://github.com/TSavo/proportionate-js#readme",
"tonicExampleFilename": "example.js",
"devDependencies": {
"chai": "^3.5.0",
"codacy-coverage": "^2.0.0",
"codeclimate-test-reporter": "^0.4.0",
"expect": "^1.20.2",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-circleci-reporter": "0.0.2",
"mocha-junit-reporter": "^1.12.1",
"semantic-release-gitlab": "^2.4.20",
"xunit-file": "^1.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}