-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 963 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 963 Bytes
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
{
"name": "ml-pad-array",
"version": "2.0.0",
"description": "Function to fill an array in Javascript",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"eslint": "eslint src __tests__",
"eslint-fix": "npm run eslint -- --fix",
"test": "npm run test-coverage && npm run eslint",
"test-only": "jest",
"test-coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/mljs/pad-array"
},
"keywords": [
"pad",
"fill",
"array",
"utils"
],
"author": {
"name": "Miguel Asencio",
"email": "maasencioh@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mljs/pad-array/issues"
},
"homepage": "https://github.com/mljs/pad-array",
"devDependencies": {
"eslint": "^6.0.1",
"eslint-config-cheminfo": "^1.20.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^22.7.1",
"jest": "^24.8.0"
}
}