-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.05 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
{
"name": "fixy",
"version": "2.0.0",
"description": "A Fixed Width Input Parser",
"main": "index.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/SteveyPugs/fixy.git"
},
"author": "SteveyPugs",
"license": "MIT",
"bugs": {
"url": "https://github.com/SteveyPugs/fixy/issues"
},
"homepage": "https://github.com/SteveyPugs/fixy",
"dependencies": {
"date-fns": "^2.30.0",
"papaparse": "^5.4.1"
},
"devDependencies": {
"eslint": "6.7.2",
"eslint-config-standard": "14.1.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-mocha": "6.2.2",
"eslint-plugin-node": "10.0.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"husky": "3.1.0",
"mocha": "7.1.2"
},
"scripts": {
"test": "make test",
"lint": "./node_modules/.bin/eslint '**/*.js'"
},
"keywords": [
"Fixed",
"Format",
"Parser"
],
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm test"
}
}
}