-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.08 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": "linear-array",
"version": "2.1.0",
"description": "Returns an array filed with linearly increasing numbers, starting from 0 up to the given value - 1 (without offset), or from 1 to the value itself (with offset).",
"main": "./dist/linear-array.js",
"module": "./src/index.js",
"scripts": {
"test": "webpack && mocha",
"build": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ispoljari/linear-array.git"
},
"keywords": [
"array",
"number",
"integer",
"increment",
"natural",
"sequence",
"linear",
"step",
"increase",
"from",
"to",
"given",
"value",
"offset"
],
"author": "Ivan Spoljaric",
"license": "MIT",
"bugs": {
"url": "https://github.com/ispoljari/linear-array/issues"
},
"homepage": "https://github.com/ispoljari/linear-array#readme",
"dependencies": {},
"devDependencies": {
"husky": "^4.2.5",
"mocha": "^8.0.1",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.12"
},
"husky": {
"hooks": {
"pre-push": "npm test"
}
}
}