-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.68 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.68 KB
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": "@geminos/mathematically",
"version": "0.0.0-development",
"description": "A simple mathematical utility package.",
"keywords": [
"math",
"mathematics"
],
"main": "dist/index.js",
"repository": "https://github.com/geminos/mathematically",
"author": "Matheus Pimenta <matheuspiment@hotmail.com> (https://github.com/matheuspiment)",
"license": "MIT",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"add-contributor": "kcd-scripts contributors add",
"commit": "git-cz",
"test": "jest --coverage src/__tests__/**.test.js",
"check-coverage": "nyc check-coverage --statements 75 --branches 75 --functions 75 --lines 75",
"report-coverage": "cat ./coverage/lcov.info | codecov",
"cover": "nyc yarn test",
"prebuild": "rimraf dist",
"build": "yarn build:main",
"build:main": "babel --copy-files --out-dir dist --ignore *.test.js src",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-eslint": "8.2.5",
"babel-plugin-module-resolver": "3.1.1",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.7.0",
"codecov": "3.0.2",
"commitizen": "2.10.1",
"cz-conventional-changelog": "2.1.0",
"eslint": "5.0.1",
"eslint-config-airbnb-base": "13.0.0",
"eslint-import-resolver-babel-module": "4.0.0",
"eslint-plugin-import": "2.13.0",
"jest": "23.2.0",
"kcd-scripts": "0.39.2",
"nyc": "12.0.2",
"rimraf": "2.6.2",
"semantic-release": "15.7.1",
"travis-deploy-once": "5.0.1"
}
}