-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
93 lines (93 loc) · 2.45 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "cyclic-next",
"version": "1.0.4",
"description": "Get the cyclic next integer number.",
"main": "dist/cyclic-next.cjs.js",
"module": "dist/cyclic-next.esm.js",
"browser": "dist/cyclic-next.umd.js",
"files": [
"dist"
],
"keywords": [
"cyclic",
"next",
"number",
"index",
"integer",
"number"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/abhisekp/cyclic-next"
},
"bugs": {
"url": "https://github.com/abhisekp/cyclic-next/issues"
},
"homepage": "https://github.com/abhisekp/cyclic-next",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rimraf dist/ && rollup -c",
"dev": "rollup -c -w",
"commit": "git-cz",
"fix": "prettier-eslint --write src/**/*.js tests/**/*.js",
"github-release": "conventional-github-releaser -p angular",
"coveralls": "coveralls < coverage/lcov.info",
"codecov": "codecov -f coverage/lcov.info",
"lint": "eslint src/. test/.",
"test": "rimraf coverage && jest",
"prepublish": "run-s build",
"validate": "run-s lint test",
"major": "pmm major",
"minor": "pmm minor",
"patch": "pmm patch"
},
"engines": {
"node": ">=4"
},
"author": {
"name": "Abhisek Pattnaik",
"email": "[email protected]",
"url": "https://about.me/abhisekp"
},
"pre-commit": "validate",
"dependencies": {
"npm-run-all": "^4.1.3"
},
"devDependencies": {
"babel-eslint": "^8.2.5",
"buble": "^0.19.3",
"buble-jest": "1.0.1",
"buble-jest-flow": "https://github.com/abhisekp/buble-jest-flow.git#^1.0",
"codecov": "^3.0.2",
"conventional-github-releaser": "^3.1.2",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "13.0.0",
"eslint-plugin-flowtype": "^2.49.3",
"eslint-plugin-import": "^2.12.0",
"flow-bin": "^0.75.0",
"jest": "^23.2.0",
"pmm": "^2.0.0",
"pre-commit": "^1.1.3",
"prettier-eslint": "^8.8.2",
"rimraf": "^2.5.4",
"rollup": "^0.62.0",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-flow": "^1.1.1",
"rollup-plugin-gzip": "^1.4.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-progress": "^0.4.0",
"rollup-plugin-uglify-es": "^0.0.1"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}